I am trying clone an svn repository using git svn. The repository has daily builds tagged which I want to ignore. I am trying to use the \"ignore-paths\" option to do that, bu
It might be easier to just clone the trunk and nothing else (git svn clone -T http://path/to/trunk
), and then add the specific tags and branches you want by modifying the config file and doing git svn fetch
es.