git svn - How to I update the path to a moved git-svn remote branch -
i have been using git , git-svn while have moved out svn repository server location. wondering need git @ new remote path can continue before. have tried changing url in config @ new repo when try git svn rebase :
unable determine upstream svn information working tree history
the svn repo same has moved locations url.
thanks in advance.
you need change svn-remote.svn.url
. can view so
% git config --get svn-remote.svn.url
and set this:
% git config svn-remote.svn.url http://foo/bar
or via editor:
% git config -e
Comments
Post a Comment