Difference between revisions of "User:Llocsin"

From SCECpedia
Jump to navigationJump to search
Line 1: Line 1:
 
==SVN to Git Plan==
 
==SVN to Git Plan==
#Convert SVN repository to a Git Repository.
+
Convert SVN repository to a Git Repository.
Steps:
+
====Steps:====
 
#Download svn2git tool: https://github.com/nirvdrum/svn2git
 
#Download svn2git tool: https://github.com/nirvdrum/svn2git
 
//Add Commands
 
//Add Commands

Revision as of 20:53, 31 July 2020

SVN to Git Plan

Convert SVN repository to a Git Repository.

Steps:

  1. Download svn2git tool: https://github.com/nirvdrum/svn2git

//Add Commands Pull desired SVN repository

   //Add Commands
  1. Create Text Document of Authors to link to Git Accounts
    1. create authors.txt
    2. add in all authors with the following format:
      1. jcoglan = James Coglan <jcoglan@never-you-mind.com>
      2. stnick = Santa Claus <nicholas@lapland.com> (Recommended to link everyone’s account but if you can’t, it’s not required to link everyone’s account, but you must provide an email, if only a made up one.)
  2. Convert the repositories with the git commands:
    1. $ svn2git http://source.usc.edu/svn/mesh_partitioner/ --trunk trunk --tags tags --nobranches --authors ~/authors.txt (Note: --trunk trunk (the trunk argument is the name of the trunk repository-tags tags (tags is the name of your repository of tags))
  3. Push to the desired git remote. (In this example we use github)
    1. Add Remote##git remote add <remote-name> <remote-url>##git remote origin git@github.com:SCECcode/CyberShake.git

Commit git add . git commit -m “Initial Commit of Converted SVN to Git Repository Code” Use tags command git push --tags


Resources: svn2git tool (from the guide): https://github.com/nirvdrum/svn2git Official Git Documentation: Guide: https://viastudio.com/migrate-svn-git/: https://github.github.com/training-kit/downloads/subversion-migration/ Github Importer Tool (alternate): https://docs.github.com/en/github/importing-your-projects-to-github/about-github-importer