our svn had so far traditional layout:
trunk
branches/
tags/
i cloned whole the repository long time ago and everything worked perfectly. but few weeks ago someone figured out that particular releases should go to releases/ instead of branches/ so the layout changed to following:
trunk
branches/
releases/
tags/
is there any way I could start tracking releases/ without cloning whole the repository again (which contains over 15k revisions...)? this is how my config looks like at this moment:
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
autocrlf = false
[svn-remote "svn"]
url = https://blahblah
fetch = trunk:refs/remotes/trunk
branches = branches/*:refs/remotes/*
tags = tags/*:refs/remotes/tags/*
unfortunately "git svn fetch" for some reason does not fetch anything from releases/ and "git branch -r" does not show any release within this directory.