Difference between revisions of "Conversion from Subversion to Git"

From Gramps
Jump to: navigation, search
(Documentation Changes)
(Code Changes)
Line 32: Line 32:
 
== Code Changes ==
 
== Code Changes ==
  
=== Convert get_svn_revision to get_git_revision - DONE ===
+
=== Convert get_svn_revision to get_git_revision ===
  
 
The function to return the latest svn revision number needs to be replaced by one to return the latest commit hash.
 
The function to return the latest svn revision number needs to be replaced by one to return the latest commit hash.
  
* gramps/gen/svn_revision.py
+
* gramps/gen/svn_revision.py -> gramps/gen/git_revision.py - DONE
* gramps/gen/const.py
+
* gramps/gen/const.py - DONE
  
=== Code to skip .svn directories - DONE ===
+
=== Code to skip .svn directories ===
  
 
Two files have code for skipping subversion directories:
 
Two files have code for skipping subversion directories:
  
* gramps/plugins/tool/mediamanager.py
+
* gramps/plugins/tool/mediamanager.py - DONE
* gramps/test/regrtest.py
+
* gramps/test/regrtest.py - DONE
  
 
We can remove this code at some point.  Git does not pollute the source code tree with its files.
 
We can remove this code at some point.  Git does not pollute the source code tree with its files.
Line 52: Line 52:
 
Three files contain the repository url:
 
Three files contain the repository url:
  
* gramps/gen/config.py
+
* gramps/gen/config.py - gramps-addons
 
* gramps/gen/db/__init__.py
 
* gramps/gen/db/__init__.py
* gramps/webapp/init.py
+
* gramps/webapp/init.py - DONE
  
=== Change svn2cl -> git2cl - No change required ===
+
=== Change svn2cl -> git2cl ===
  
 
There is a reference to svn2cl in the about dialog.  There is a git alternative available at http://savannah.nongnu.org/projects/git2cl/.
 
There is a reference to svn2cl in the about dialog.  There is a git alternative available at http://savannah.nongnu.org/projects/git2cl/.
  
* gramps/gui/aboutdialog.py
+
* gramps/gui/aboutdialog.py - No change required
  
=== Headline News gramplet - DONE (gramps40 and master) ===
+
=== Headline News gramplet ===
  
Change url to point to Git repository.
+
Change url to point to Git repository. - DONE (gramps40 and master)
  
 
== Bug Tracker Changes ==
 
== Bug Tracker Changes ==

Revision as of 19:56, 9 November 2013

Repository Changes

Revision number

Git uses hashes rather than revision numbers. We plan to keep the subversion revision number in the commit messages, but convert it into a shorter more readable format.

It will be possible to find a subversion revision with:

git log --grep=<revision>

Properties

Git does not have file-level properties. Instead, file attributes can be defined in the .gitattributes file.

Line ending characters (CRLF/LF) and file types (text/binary) can be defined in the .gitattributes file. This will replace the svn:eol-style and svn:mime-type properties.

The svn:ignore properties are replaced by the .gitignore file. This is already present for users of the git mirror.

It is not easy to implement useful keyword expansion of $Id$ in git, so we don't propose to do so. The same information can be obtained with:

git log -1 <path>

Convention

Rename "trunk" to "master".

Procedural

We want to minimize the time window when the commits are not possible during the transition. At some point we'll switch the old SVN repo to read-only mode --- this will be announced on the devel list.

Can we push our commits from the git repositories that tracked John's repo with git-svn, maybe this should be set up as an interim approach?

Code Changes

Convert get_svn_revision to get_git_revision

The function to return the latest svn revision number needs to be replaced by one to return the latest commit hash.

  • gramps/gen/svn_revision.py -> gramps/gen/git_revision.py - DONE
  • gramps/gen/const.py - DONE

Code to skip .svn directories

Two files have code for skipping subversion directories:

  • gramps/plugins/tool/mediamanager.py - DONE
  • gramps/test/regrtest.py - DONE

We can remove this code at some point. Git does not pollute the source code tree with its files.

Repository url needs changing

Three files contain the repository url:

  • gramps/gen/config.py - gramps-addons
  • gramps/gen/db/__init__.py
  • gramps/webapp/init.py - DONE

Change svn2cl -> git2cl

There is a reference to svn2cl in the about dialog. There is a git alternative available at http://savannah.nongnu.org/projects/git2cl/.

  • gramps/gui/aboutdialog.py - No change required

Headline News gramplet

Change url to point to Git repository. - DONE (gramps40 and master)

Bug Tracker Changes

Rename the "Trunk" project to "Master".

Documentation Changes

The main changes required will be to the developer wiki pages:

Other wiki pages that will require minor changes:

Pages requiring changes when gramps-addons is converted: