I have my projects in 2 repositories. One under SVN and one under Git. Whenever I change something in SVN I want to do the same thing to the Git repository.

Say I make a change to SVN repository, producing revision 125. How would I apply these same changes to my Git repository (assuming my Git repository is up to date with revision 124).

Thank you.

link|improve this question

feedback

4 Answers

up vote 10 down vote accepted

Thank's MattJ! What I actually did/looking for was:

cd /path/to/svn/repo
svn diff -r 125 > /tmp/patch.diff
cd /path/to/git/repo
patch -p0 < /tmp/patch.diff

But I up voted your answer!

link|improve this answer
it didn't work so well! – Felipe Micaroni Lalli Feb 14 '11 at 20:41
Sorry, this was really specific situation. I suggest you post a question if you are having trouble :( – drozzy Feb 15 '11 at 0:02
In general, git-svn is a better way of importing (and exporting) svn commits into git repositories. It will keep the commit message and author info, and cope with many edge cases which will break the answer given here. (Of course, this script may be more appropriate for your situation if there are external constraints you haven't discussed here) – Rich Apr 16 at 12:39
feedback

Try:

svn diff | patch -d /path/to/git/repo -p0

See svn help diff if you want to export a specific revision's diff.

link|improve this answer
1  
Why doesn't this work with the -p0 is left off? – Noah Campbell Nov 13 '09 at 22:42
See -pnum in linux.die.net/man/1/patch In particular search the page for words "not specifying -p". I think if you don't specify it - patch will ignore the filepath and just use the filename. – drozzy Oct 23 '10 at 22:56
feedback

Why does no one like git-svn? I cannot assume no-one knows about it.

There is git-svn (and git-hg and git-cvs and git-bzr afaict). At least with git-svn you can simply do

git svn clone --stdlayout http://myrepo/root here

using -s (--stdlayout) assumes standard trunk/ branches/ tags/ layout, but you can have it any which way (man git-svn).

The mapping is bidirectional, so you can push and pull as with a native (git) remote. No questions asked.

link|improve this answer
feel free to add a post-commit hook to do an automatic push after commit :) – sehe Mar 16 '11 at 15:33
feedback

Besides using patch as mentioned above you could also consider setting up a post-commit hook so you don't have to do this every time you commit something new.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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