Difference between revisions of "Git/migrating to git"
(link to repo cleaner) |
|||
Line 52: | Line 52: | ||
<li> Update references in your literature, project documents, websites, systems, reference materials and procedure documents to reference the new systems. This step can be ameliorated if in the beginning you reference code in a generic way such as "code.example.com" where you can then link to various aspects and implementations of your code systems; rather than naming them specifically based on technology or implementation. | <li> Update references in your literature, project documents, websites, systems, reference materials and procedure documents to reference the new systems. This step can be ameliorated if in the beginning you reference code in a generic way such as "code.example.com" where you can then link to various aspects and implementations of your code systems; rather than naming them specifically based on technology or implementation. | ||
</ol> | </ol> | ||
+ | == Post-processing == | ||
+ | * Use the [https://rtyley.github.io/bfg-repo-cleaner/ BFG Repo cleaner] to remove large files, passwords, unwanted paths | ||
+ | |||
== Lessons Learned == | == Lessons Learned == | ||
* https://techbase.kde.org/Projects/MovetoGit | * https://techbase.kde.org/Projects/MovetoGit |
Revision as of 21:25, 30 November 2015
Contents
Summary[edit | edit source]
A summary of the steps for migrating your version control system to git from subversion
- Discussions with stakeholders, project lead
- Leverage the resources and expertise of prior large migrations including Pro Git 2nd Ed. Eclipse Foundation, Atlassian, Wikimedia Foundation, EclipseCon proposed talk by Max Anderson, Drupal, PostgreSQL, and Pentaho. Be sure to include the "before", the migration itself, and the "after" migration work.
- Understand the concept of Git repos
- Know the caveats
- Plan and structure your Git space
- Decide what to do with your existing code
- Archive your current SVN repository?
- Import your history into git?
- Do the migration.
- Map users
- Migrations must include at least the following details
- Migration timeline
- mapping of current code to new Git repos
- decision regarding existing code (archive or import)
- A description for each repository (which will be visible in the web view)
- Use scripted recipes for LARGE migrations [1]
- Importing your SVN history into Git
- If you can migrate using
git svn clone
[2] which is a tool providing a bi-directional conduit of changesets between subversion and git, then good for you! Your project is small and uncomplicated. For larger, more complicated migrations, this tool is not suited for the job. It will take too long, and simply will fail to produce a git repository. I don't understand why Atlassian recommends this approach in their "tutorial" without telling you that it will fail; or at least providing the major caveats. Still, you can read up on the simplistic scenario[3] - Using svn2git [4]
- Using reposurgeon - a tool by Eric Raymond
- If you can migrate using
- Convert svn:ignore properties to .gitignore file (example of why you need to later delete empty commits which reflect properties not code changes)
- Service integrations
- JIRA / Issue Tracker
- ReviewBoard / Code Review
- Jenkins / Build system
- SQA
- OpenGrok / Code indexing browser
- Client and End User configurations
- Create keys, add each to client and server
- Install / setup TortoiseGit for Windows
- Add EGit to Eclipse
- Netbeans natively supports Git since v7.1
- Repository permissions and group definitions, key imports
- Establish Git Resources
- Create Git Task Force
- Update references in your literature, project documents, websites, systems, reference materials and procedure documents to reference the new systems. This step can be ameliorated if in the beginning you reference code in a generic way such as "code.example.com" where you can then link to various aspects and implementations of your code systems; rather than naming them specifically based on technology or implementation.
Post-processing[edit | edit source]
- Use the BFG Repo cleaner to remove large files, passwords, unwanted paths
Lessons Learned[edit | edit source]
- https://techbase.kde.org/Projects/MovetoGit
- http://blog.smartbear.com/software-quality/migrating-from-subversion-to-git-lessons-learned/
Caveats[edit | edit source]
A single Subversion repository almost always contains multiple "projects" - each with it's own 'trunk', 'branches' and 'tags'. One thing you'll find moving from SVN to Git is that Git repositories aren't designed for multiple projects in the way that SVN is used. All the separate projects (from a single SVN repository) should be migrated to separate Git repositories. A tag or branch in a Git repository is always global to the repository -- so split the code into repositories along boundaries that make sense semantically. (Note that git has much better support for including library code into a project. The feature is called "sub modules". Thus library code can be semantically split out into it's own repository, and that library can be re-used across multiple git repositories. This is like svn "externals" only better.
Upside[edit | edit source]
Once you've established a git infrastructure for version control, git to git migrations are incredibly easy... at least for the core git repository functions. Just add another remote to push/pull. This means that if you wish to change your git infrastructure to use a different system, the work involved will mostly be about the extra features bundled with the system (e.g. web viewer, code review, etc.) and integrations.
Combining git repos[edit | edit source]
You might desire to reorganize your code in the migration process. There are several tools which allow you to merge git repositories together.
- This one called git-stitch-repo seems more capable
- This other one by the same name, authored by Philippe Bruhat (BooK) is nonetheless capable of merging two (or more) repositories
- This one, git-merge-repos is interesting because it talks about taking multiple repositories with more or less the same branches or tags, and merging them at the tag
- This post on Stackoverflow about combining multiple git repositories mentions git-stitch-repo, and also how it gained the capability to work with non-linear merge histories. It also explains how to do repo merges with git-filter-branch. Note that git-filter-branch requires you to rewrite your history (breaking SHA1 sums).
- The subtree merge strategy page on kernel.org shows you how to do this.
- https://westmarch.j5int.com/2014/06/splicing-git-repositories-together/ Splice Repos is a python script. It's more recent than some others and a better tool because it's based on fast-export/fast-import [5]. It grew out of the JBossTools git migration (which itself has some useful info on procedures).
References[edit source]
- ↑ Max Anderson's recipe for migration of the JBoss Tools repos
- ↑ https://git-scm.com/docs/git-svn
- ↑ https://www.atlassian.com/git/tutorials/migrating-convert/
- ↑ There are 2 pieces of software by the same name. The one you want was created by the KDE team. You could use the ruby gem by nirvdrum, but it's going to be slower. Unfortunately the KDE code lived on gitorious.org which was bought out by gitlab. They say they're going to put the code up on archive.org, but it's not there and I wouldn't hold my breath. The good news is that the code can be found and is also referred to as svn-all-fast-export
- ↑ https://git-scm.com/docs/git-fast-import