Why did remote git svn snooping stop working?

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 --set-upstream develop develop-svn
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/*
+3
source share
1 answer

Pro Git, git svn dcommit , Subversion svn-id , git svn documentation , , , :

, : git svn dcommit SVN,

       git log --grep=^git-svn-id: --first-parent -1

, , , dcommit to, . , - SVN.

( , , svn-id URL-, trunk svn-develop, - .)

, , , , ? - , git svn ( ) trunk Subversion, develop-svn?

+5

All Articles