A branch question

2015-03-10 Thread J. R. Westmoreland
hi everyone I have found a solution which may not be the best so I’m asking it here to see if I get a different solution from the wizards group. :) I have a number of repos that were converted from svn to git. After the conversion the branches that contained each release were named something

Re: A branch question

2015-03-10 Thread Junio C Hamano
J. R. Westmoreland j...@jrw.org writes: I have a number of repos that were converted from svn to git. After the conversion the branches that contained each release were named something like “branches/version_version-number”. We want to modify the repo so the branches are named something like

Re: A branch question

2015-03-10 Thread Junio C Hamano
Junio C Hamano gits...@pobox.com writes: 2. If you want to only correct what is shown at origin to the other people, then you do not have to update your local repository. $ git push origin version_1.0 v1.0 $ git push origin version_1.1 v1.1 Colons are missing from this one.