Software Development

Migrate your project from SVN to Git Stash in few steps

Step by step guide on how to migrate your SVN repository with all its history to the Stash, the Atlassian git manager.
 
 
 
 
 
 
 
 
 

Only once :

  1. add the ssh key
  2. open a terminal
  3. create the authors.txt file in ~/Documents/
  4. git config svn.authorsfile ~/Documents/authors.txt

authors.txt format :

username = Name LastName <email>

example :

gordof = Gordon Flash <gordon.flash@superhero.com>
marcoc = Marco Castigliego <marco.castigliego@superhero.com>

For each project :

For this example I will migrate a project called super-hero-service.

  1. Tell your team members to not commit on the project during the process.
  2. Open a terminal
  3. cd ~
  4. mkdir migration
  5. cd migration
  6. git svn clone svn+ssh://marcoc@svn.superhero.com/com/super/hero/Services/ –trunk=super-hero-service super-hero-service
  7. go to take a coffee
  8. cd super-hero-service
  9. git svn show-ignore (Which outputs everything in the SVN ignore property to the console. Then you can copy this to a new file called .gitignore at the root of your repository.Add and commit the file.)
  10. go to https://stash.superhero.com/projectsServices and create a repository called super-hero-service
  11. git remote add origin ssh://git@stash.suoperhero.com:2022/services/super-hero-service.git
  12. git push -u origin master
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

3 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Mr P
Mr P
9 years ago

Point 7 in real projects: tell 20 persons that they will not work for at least 24h (e.g svn has 250 000 revisions). :P

marco
9 years ago
Reply to  Mr P

Haha true!

Alexey
Alexey
8 years ago

Thanks, the article was really useful.

Never did this before and spent only about an hour to complete.

Back to top button