Migrate from SVN to GIT with tags / connectors / branches / release with extra folder

I have an SVN project with below directory structure

root
    |-->branches
    |-->trunk
        --> file 1
        --> file 2
    |-->release
        --> file 1
        --> file 2
    |-->tags
        |-->tag1
        |-->tag2
        |-->tagN

      

Problem moving from SVN to GIT I can display

SVN      to   GIT
branches --  branches
tags     --  tags
trunk    --  trunk
release  --  ??????

      

How can I map the release folder to the GIT folder

+3


source to share


1 answer


I think there should be tags as well. It mainly depends on how you used them. Take a look at the atlas tutorial on Migrating from Subversion to Git. It's pretty straight forward and straightforward: https://www.atlassian.com/git/tutorials/migrating-overview . You can experiment, watch what you get, and if you don't like it, you can always start over.



+1


source







All Articles