How to make an existing git branch track a remote SVN branch?

The idea remains to push to an existing SVN branch.

The idea remains to push to an existing SVN branch. Meaning you need: to git svn rebase an existing SVN branch (called here 'git-svn-branch') git branch -b work # new working branch work... git checkout git-svn-branch and git svn rebase (make sure master is up-to-date) git checkout work and git rebase git-svn-branch (replay your work on top of the git-svn branch) git checkout git-svn-branch and git merge work (update git-svn-branch HEAD to work HEAD) git svn dcommit (push back the git-svn branch to SVN repo, with work commits included in it) You will find that same process in this SO question. So, in short, when you are working on a local Git branch, and you want to push it to an SVN branch, you need first to import that SVN branch to a 'git-svn' local branch, and then rebase/merge your local branch on it.

You cannot directly push your local Git branch on an SVN remote one.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions