DimanNe <dimanne@xxxxx> writes: >> What does your config look like now? > > [core] > repositoryformatversion = 0 > filemode = true > bare = false > logallrefupdates = true > > [svn-remote "svn"] > url = https://some_host/trunk/ > fetch = :refs/remotes/git-svn > > [merge] > renameLimit = 50000 > > [svn-remote "stable-2012-09-13"] > url = https://some_host/branches/stable-2012-09-13/ > fetch = :refs/remotes/stable-2012-09-13 Sounds like you should instead have only a single remote, along the lines of: [svn-remote "svn"] url = https://some_host/ fetch = trunk:refs/remotes/git-svn fetch = branches/stable-2012-09-13:refs/remotes/stable-2012-09-13 or possibly, instead of manually listing the branches you want, branches = branches/*:refs/remotes/svn/* -- Thomas Rast tr@xxxxxxxxxxxxx -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html