I need to get revisions from SVN to GIT. I have two types of branches under SVN:
- Standard branches located in the folder / branches under SVN
- Some specific branches located under / branch / devs / folders
To get both types of branches, I specified the following configuration in the svn-remote section:
[svn-remote "svn"] url = https://somecompany.com/product fetch = trunk:refs/remotes/trunk fetch = tools:refs/remotes/root/tools branches = branches/*:refs/remotes/* branches = branches/devs/*/*:refs/remotes/devs/*/* tags = tags/*:refs/remotes/tags/*
Unfortunately, for the second type of branches, sampling is performed twice. Turning to developers as a regular branch, and the second time in the right direction: work with individual branches of developers.
Until now, I have manually commented on either the first or second βbranchesβ and indicate which revisions are retrieved based on which branches were affected by the commits.
Can anyone suggest a way to automate (fix) the above?
Thanks,
Gray y
source share