Duplicate

How do I make git-svn use a particular svn branch as the remote repository?

I am using git-svn to track development by someone else on svn. I'm trying to figure out how to use gti-svn to switch from one svn branch to another. All the examples I have able to find talk about using svn switch as method to switch location instead of actual branches.

Essentially, I would like to start pulling from /svn/branch/1.3 instead of /svn/branch/1.2 using svn fetch.

link|improve this question

62% accept rate
Turns out this is a duplicate. Sorry. – Can Berk Güder Apr 8 '09 at 8:29
I did not see a dup. Where did you see this? – Jauder Ho Apr 8 '09 at 8:38
I edited your question to provide a link. – Can Berk Güder Apr 8 '09 at 8:45
feedback

2 Answers

These commands have been incredibly useful for me when working on svn branches via git-svn:

#create local Git branch that mirrors remote svn branch

git checkout -b local/RELEASE-0.12 RELEASE-0.12 
#will connect with a remote svn branch named ‘RELEASE-0.12′

# -n will show which svn branch you will commit into:
git svn dcommit --dry-run 

See full explanation in my article on justaddwater.dk.

link|improve this answer
feedback

If you've cloned the SVN repository properly (using -T -b -t or -s), you should be able to use the git branch commands like:

git reset --hard remotes/branch

git checkout branch

etc.

link|improve this answer
What if I already have changes in my local repo that I push to a separate git repo on github? I created the repo originally using git svn clone svn/branch/1.2 – Jauder Ho Apr 8 '09 at 8:41
git checkout branch doesn't destroy your changes. git reset --hard does. – Can Berk Güder Apr 8 '09 at 8:45
If you use reset --hard here, you'll blow away any changes made locally on top of remotes/branch. – richq Apr 8 '09 at 8:51
I do not own the svn repo and apparently only the branches are exposed (as releases). So this is not really a duplicate of the other request. In this scenario, I am not able to do a git branch -r followed by git checkout -b – Jauder Ho Apr 8 '09 at 9:11
Basically, git branch -r does not show the 1.3 branch just stuff under the 1.2. – Jauder Ho Apr 8 '09 at 9:14
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.