Dear Wiki user, You have subscribed to a wiki page or wiki category on "Cassandra Wiki" for change notification.
The "HowToContribute" page has been changed by EricEvans. http://wiki.apache.org/cassandra/HowToContribute?action=diff&rev1=32&rev2=33 -------------------------------------------------- * Using git to manage patches during reviews: http://spyced.blogspot.com/2009/06/patch-oriented-development-made-sane.html * Uploading and applying patches from JIRA automagically: [[GitAndJIRA]] + === Branch-specific Git repo === + Sometimes it's necessary to create an entirely new repository instance to work on a branch (for example, if you need to work in a separate IDE configuration). This is particularly common in the long-term support of stable releases. The following recipe can be used to create a Git repository for tracking/committing to/from a single branch. + + {{{ + mkdir cassandra-0.7 + cd cassandra-0.7 + git init + git remote add -f -t cassandra-0.7 -m master origin git://github.com/apache/cassandra.git + + git remote set-head origin cassandra-0.7 + git merge origin + + # Git-svn setup + cd .git; wget http://git.apache.org/authors.txt; cd .. + git config svn.authorsfile ".git/authors.txt" + git svn init --prefix=origin/ --branches=branches https://svn.apache.org/repos/asf/cassandra + }}} +
