Git: How does git svn fetch work?

20,924

Solution 1

This is how git svn fetch works:

When using git-svn you don't have remotes of the svn server as you have when using git, you just have a link to the remote svn server in your local .gitconfig file.

If you want to update your current branch to the last revision you can use git svn rebase. But if your svn project is big you might be in the situation where you don't know if you the last revision is a successful build. And if you want to update to a specific revision that you're sure is a successful build, for example you use Jenkins which gives you the last successful build, you have to first fetch to the revision you want and then rebase with the fetched commits.

For this you can git svn fetch -r <revision>. This will fetch locally the commits till the wanted revision. To rebase the fetched data you must use git svn rebase -l or git svn rebase --local. You don't have to be online to do a local rebase.

Solution 2

By default the git-svn tracking branch is remotes/git-svn, you can use it to merge or rebase your work on top of the changes fetched by git svn fetch.

Share:
20,924
Jacob Krieg
Author by

Jacob Krieg

Updated on March 25, 2020

Comments

  • Jacob Krieg
    Jacob Krieg about 4 years

    How does git svn fetch work? Where is that branch which is fetched so that I can merge or rebase with my master or other branch? Where is the data fetched because git remote doesn't give me anything on my git svn repository?