vote up 7 vote down star
2

Please provide tips for effectively using git with svn. What are your "best practices"?

flag

3 Answers

vote up 3 vote down check

When you create the clone, use --prefix=svn/. It creates nicer branch names.

Also, don't neglect the --trunk, --tags, and --branches arguments when doing clone or init.

Fetching is one of the more time-consuming steps, so set up a cron job to do git svn fetch in the background. This is safe because fetching doesn't affect any of your working branches.

( Background info on git svn fetch: This command is executed first whenever you do git svn rebase, so by doing this step ahead of time, your git svn rebase call will usually be faster. The fetch command downloads SVN commits and sticks them into special branches managed by git-svn. These branches are viewable by doing git branch -r, and if you did the above step, they start with "svn/". )

Make sure you know how to use git reflog. I've had a few occasions where git svn dcommit died (usually because I tried to check in something huge) and my commit seemed to be lost. In every case, the commit was easily found in the reflog.

link|flag
Can you explain some more about the fetch trick? What does that do? Do you just run it over and over in the background? Having done that, how do you get the changes into your branch? – 1800 INFORMATION Oct 1 '08 at 6:34
Ok, added some extra info on fetch – andy Oct 2 '08 at 0:00
vote up 3 vote down

Here's some that I recently learned:

  1. always do git svn rebase before doing git svn dcommit
  2. when you are doing dcommit, do it from a temporary staging branch - if you (or git) mess up, it's much easier to recover by just deleting the branch and starting over

When svn dcommit dies halfway through a large commit and you seem to have lost all of your history, do this:

How To Recover:

First, open .git/logs/HEAD

Find the hash of the commit that's the head of your git repo. Hopefully you remember the commit message and can figure it out, but it should be pretty obvious

Back in your now f-ed up working-dir:

git reset --hard <hash from log>

This gets your working dir back to where it was before you did a git- svn dcommit. Then:

git-svn rebase git-svn dcommit

link|flag
Agree on #1, but I've never found that I've needed to do #2. dcommit doesn't break that often, and when it does, it's not hard to recover. – andy Oct 1 '08 at 0:04
today it decided that perl would dump core halfway through - it left me with my working copy missing lots of changes – 1800 INFORMATION Oct 1 '08 at 0:15
vote up 1 vote down

If you have a post-commit hook in your SVN repository that can reject commits, then git svn dcommit will stop processing commits the first time a commit is rejected, and you'll have to recover your remaining commits from the git reflog.

Actually, I think the above problem was caused by my cow-orker not running git rebase -i correctly while trying to fix the rejected commits. But, thanks to the reflog we were able to recover everything!

link|flag

Your Answer

Get an OpenID
or

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