I have the following setting
svn repository
application
|
|-branches
| |
| |-develop-svn
|
|-trunk
local git repository
master
|
|-develop
master tracks for remotes / trunks
develop remotes / develop-svn pools
For some reason, development has stopped tracking development-svn.
When I exit the wizard, I receive the following message.
$ (master) git checkout develop
Switched to branch develop
Your branch is ahead of 'develop-svn' by 59 commits.
When I try to commit the svn repository, it tries to update the remote trunk.
$ (develop) git svn dcommit -n
Committing to https://servername/svn/application/trunk ...
...
He used to commit https: // servername / svn / application / branches / develop-svn
I already tried this command, which did not help:
$ (master) git branch
Branch develop set up to track local refs/remotes/develop-svn.
$ (master) git checkout develop
Switched to branch develop
Your branch is ahead of 'develop-svn' by 59 commits.
$ (develop) git svn dcommit -n
Committing to https://servername/svn/application/trunk ...
...
My config is as follows
[svn-remote "svn"]
url = https://servername/svn/application
fetch = trunk:refs/remotes/trunk
branches = branches/*:refs/remotes/*
tags = tags/*:refs/remotes/tags/*
source
share