I have a single SVN repository with the below structure where I am interested in seven projects out of 20+.
- Branches
- Project1
- Project2
- Project3
- Project4
- Project...
- Releases
- Project1
- Project3
- Project...
- Tags
- Project1
- Project2
- Project3
- Project4
- Project5
- Project6
- Project7
- Project...
- Trunk
- Project1
- Project2
- Project3
- Project4
- Project5
- Project6
- Project7
- Project...
I have tried following the migration guide from Bitbucket with additions found through other posts. No matter which of the below commands I try I end up with an empty .git repository.
How would I manage to only get one project out into a git repository using git svn?
Commands tried
git svn clone –std-layout –authors-file=authors.txt http://{companyURL}/{teamName}/trunk/Project4 Project4
git svn clone –trunk=/trunk –branches=/branches –tags=/tags –authors-file=authors.txt http://{companyURL}/{teamName}/trunk/Project4 Project4
git svn clone –trunk=/trunk –branches=/branches –tags=/tags –authors-file=authors.txt http://{companyURL}/{teamName}/trunk/Project4 Project4 --no-minimize-url
git svn clone –trunk=/trunk/NemloginIntegration –branches=/branches/NemloginIntegration –tags=/tags/NemloginIntegration –authors-file=authors.txt http://{companyURL}/{teamName}/trunk/Project4 Project4