Le mer 29/06/11 10:52, "Rickard Öberg" [email protected] a écrit: > So if I commit all my stuff in "develop", and then run the above with > let's say "branch_2.0", will that then take all my changes and put into > that branch? Or will it start with the develop branch that is in repo > now? I really really don't want to lose my local changes...
This easiest way would be to stash your changes, create the new branch, unstash your changes and then commit/push to the newly created branch. Something like : git stash save git checkout -b name-your-2.0-branch git stash apply /Paul _______________________________________________ qi4j-dev mailing list [email protected] http://lists.ops4j.org/mailman/listinfo/qi4j-dev

