At my workplace we use SVN for version control. I switched to git-svn when I found out about it, and recently I decided to sync some of my private branches to another remote git
Perhaps this thread might be of interest, although git-svn may have changed since.
I'd also use fetch
rather than pull
and have a quick look to see if there will be conflicts using a tool such as gitk
before doing the merge.
First, thanks to Matthew for the links -- they were helpful to me in coming to my own solution for this problem.
It's possible to do this, but the caveats are that it requires some care and very probably has limits with respect to the number of committers involved. My use case is basically what mitjak describes; a single user that has a need and/or desire to utilize two remote repositories, one SVN and the other Git. In my case the former is at work behind a firewall and the other is offsite (also private). The goal is to be able to work on a local copy of the repository using Git and keep both remote repositories happy.
My procedure:
This all hinges on the fact that git svn dcommit
changes the SHA1's associated with the original git commits. With that point firmly in mind, after making a commit locally, I [optionally git svn rebase
then] git svn dcommit
, producing the final SHA1. At that point, I push to my remote git repo. If as Chacon states all that you want to do is provide a more efficient cloning point using git you are done. But you may also want to be able to:
Step 1 represents no problem; following a commit to your local "pure git" repository git push
to the remote git repository.
Step 2 is again no problem; back in your hybrid git/svn repository, git pull
the changes from the remote git repository. At this point the SHA1's associated with the newly pulled revisions are in sync with those in the remote git repository.
Step 3 is where the process gets a little trickier. You can git svn dcommit
these changes as described above to push them up to the SVN repository, but then the situation is a bit different than that described above. In this case, you now have the same revisions in the remote SVN and git repositories, but they have different SHA1's because of the dcommit. I handle this in the following way:
During the pull in Step 2, I note the associated beginning SHA1; e.g.,
git pull someone@example.org's password: remote: Counting objects: 5, done. remote: Compressing objects: 100% (3/3), done. remote: Total 3 (delta 0), reused 0 (delta 0) Unpacking objects: 100% (3/3), done. From ssh://example.org/pub/scm/demonstrate 34b6260..17cd887 master -> origin/master Updating 34b6260..17cd887 Fast forward file3 | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
So here the SHA1 of interest is 34b6260. git log origin
should confirm that this is the last commit in the remote git repository that has a git-svn-id associated with it. I then do the following:
git push -f origin 34b6260:master
performing a forced update of the remote repository to exclude the "pure git" commits that I made from the "pure git" local repository -- use with care! In this case, I know that I have these commits locally; they just have different SHA1's from the dcommit. I then git push
to the remote repository, adding the "git-svn-id"-versions of the commits that I just removed, and the remote repositories are in sync.
Re-syncing the "pure git" local repository with the remote git repository is the final step, but similar care produces satisfactory results. In this case, the remote git repository now contains the "git-svn-id"-versions of the commits, while the local "pure git" repository still contains the original SHA1s. The easiest way to deal with this is to git fetch
from the remote git repository, then git reset --hard origin
to force the local git repository to mirror the state of the remote.
In chapter 9.1 of Pro Git, Scott Chacon states:
Don’t rewrite your history and try to push again, and don’t push to a parallel Git repository to collaborate with fellow Git developers at the same time. Subversion can have only a single linear history, and confusing it is very easy. If you’re working with a team, and some are using SVN and others are using Git, make sure everyone is using the SVN server to collaborate — doing so will make your life easier.
Based on the statements:
it appears that Subversion cannot handle your desired workflow without pulling from your remote git repo so that Subversion has only a single linear history.
You might want to check out the section Advanced: Linking another, remote GIT repository to your GIT and GIT-SVN in the article Synchronizing Repositories by Daya Bay.