This document is designed to walk people through the conversion process from Subversion to Git, written from the source committer's point of view. This document is a living document, so please don't hesitate to send improvements, or even ask for areas to be explained more / better / at all.
Before we get started, here's a handy cheat sheet for old to new URLs.
SVN infra -> Git infra map
Item | SVN | Git |
---|---|---|
Web-based repository browser | https://svnweb.freebsd.org | https://cgit.freebsd.org |
Distributed mirrors for anonymous readonly checkout/clone | https://svn.freebsd.org svn://svn.freebsd.org | https://git.freebsd.org ssh://[email protected] |
Read/write Repository for committers (*) | svn+ssh://(svn)repo.freebsd.org | ssh://git@(git)repo.freebsd.org |
(*) Before all repositories in SVN have been migrated, the repo.freebsd.org will be pointing to one of: - svnrepo.freebsd.org - gitrepo.freebsd.org
Please use the hostname that explicitly includes the VCS name to
access the right repositories during the migration. repo.freebsd.org
will be the canonical FreeBSD Git repository for the committers after
all the repositories migrated to Git.
There are many primers on how to use Git on the web. There's a lot of them (google "Git primer"). This one comes up first, and is generally good. https://danielmiessler.com/study/git/ and https://gist.github.com/williewillus/068e9a8543de3a7ef80adb2938657b6b are good overviews. The Git book is also complete, but much longer https://git-scm.com/book/en/v2. There is also this website https://ohshitgit.com/ for common traps and pitfalls of Git, in case you need guidance to fix things up.
This document will assume that you've read through it and will try not to belabor the basics (though it will cover them briefly).
This section will cover a couple of common scenarios for migrating from using the FreeBSD Subversion repo to the FreeBSD source git repo. The FreeBSD Git conversion is still in beta status, so some minor things may change between this and going into production.
Before you git started, you'll need a copy of Git. Any Git will do,
though the latest ones are always recommended. Either build it from
ports, or install it using pkg (though some folks might use su
or
doas
instead of sudo
):
% sudo pkg install git
If you have no changes pending, the migration is straight forward. In this, you abandon the Subversion tree and clone the Git repo. It's likely best to retain your subversion tree, in case there's something you've forgotten about there. First, let's clone a repo:
% git clone -o freebsd --config remote.freebsd.fetch='+refs/notes/*:refs/notes/*' https://git.freebsd.org/src.git freebsd-src
will create a clone of the FreeBSD src repo into a subdirectory called
freebsd-src
and include the 'notes' about the revisions.
The current plan for GitHub mirroring is to mirror to
https://github.com/freebsd/freebsd.git as well. When the transition
starts, the github master
branch will be frozen. We will be using the name main
instead
of master
that was used in the beta version of the github.com mirror.
The exact logistics of this are still being finalized, as there are over 2k forks and 5k stars.
We will also mirror the repo to gitlab at https://gitlab.com/FreeBSD/src.git .
Its transition plan is also being finalized.
It's useful to have the old Subversion revisions available. This data is stored using Git notes, but Git doesn't fetch those by default. The --config and the argument above changed the default to fetch the notes. If you've cloned the repo without this, or wish to add notes to an previously clone repository, use the following commands:
% git config --add remote.freebsd.fetch "+refs/notes/*:refs/notes/*"
% git fetch
At this point you have the src checked out into a Git tree, ready to do other things.
If you are migrating from a tree that has changes you've not yet committed to FreeBSD, you'll need to follow the steps from the previous section first, and then follow these.
% cd path-to-svn-checkout-tree
% svn diff > /tmp/src.diff
% cd mumble/freebsd-src
% git checkout -b working
This will create a diff of your current changes. The last command
creates a branch called working
though you can call it whatever you
want.
% git apply /tmp/src.diff
this will apply all your pending changes to the working tree. This doesn't commit the change, so you'll need to make this permanent:
% git commit
The last command will commit these changes to the branch. The editor will prompt you for a commit message. Enter one as if you were committing to FreeBSD.
At this point, your work is preserved, and in the Git repo.
So, time passes. It's time now to update the tree for the latest
changes upstream. When you checkout main
make sure that you have no
diffs. It's a lot easier to commit those to a branch (or use git stash
) before doing the following.
If you are used to git pull
, I would strongly recommend using the
--ff-only
option, and further setting it as the default option.
Alternatively, git pull --rebase
is useful if you have changes staged
in the main directory.
% git config --global pull.ff only
% cd freebsd-src
% git checkout main
% git pull (--ff-only|--rebase)
There is a common trap, that the combination command git pull
will
try to perform a merge, which would sometimes creates a merge commit
sha that didn't exist before. This can be harder to recover from.
The longer form is also recommended.
% cd freebsd-src
% git checkout main
% git fetch freebsd
% git merge --ff-only freebsd/main
These commands reset your tree to the main branch, and then update it
from where you pulled the tree from originally. It's important to
switch to main
before doing this so it moves forward. Now, it's time
to move the changes forward:
% git rebase -i main working
This will bring up an interactive screen to change the defaults. For now, just exit the editor. Everything should just apply. If not, then you'll need to resolve the diffs. https://docs.github.com/en/free-pro-team@latest/github/using-git/resolving-merge-conflicts-after-a-git-rebase can help you navigate this process.
First, ensure that the push URL is properly configured for the upstream repository.
% git remote set-url --push freebsd ssh://[email protected]/src.git
Then, verify that user name and email are configured right. We require that they exactly match the passwd entry in FreeBSD cluster. Use
freefall% gen-gitconfig.sh
on freefall.freebsd.org to get recipe that you can use directly, assuming /usr/local/bin is in the PATH.
The below command merges the 'working' branch into the upstream main line. It's important that you curate your changes to be just like you want them in the FreeBSD source repo before doing this.
% git push freebsd working:main
If your push is rejected due to losing a commit race, rebase your branch before trying again:
% git checkout working
% git fetch freebsd
% git rebase freebsd/main
% git push freebsd working:main
You'll need to make sure that you've fetched the notes (see the No staged changes migration
section above for details. Once you have
these, notes will show up in the git log command like so:
% git log
XXX NEED to UPDATE
If you have a specific version in mind, you can use this construct:
% git log --grep revision=XXXX
XXX need to update
%
to find the specific revision. The hex number after 'commit' is the hash you can use to refer to this commit.
Note: as of this writing, the https://github.com/freebsd/freebsd-src
is mirroring all official branches, along with a master
branch which
is the leagcy svn2git result. The master
branch will not be updated anymore,
and the last commit
contains the instructions of migrating to new main
branch.
We'll likely retain the master
branch for a certain time, but in the future
it will only be kept in the
freebsd-legacy repository.
When migrating branches from a github fork from the old github mirror
to the official repo, the process is straight forward. This assumes that
you have a freebsd
upstream pointing to github, adjust if necessary.
This also assumes a clean tree before starting...
- Add the new
freebsd
source of truth:
% git remote add freebsd https://git.freebsd.org/src.git
% git fetch freebsd
% git checkout --track freebsd/main
- Rebase all your WIP branches. For each branch FOO, do the following after
fetching the
freebsd
sources and creating a localmain
reference with the above checkout:
% git rebase -i freebsd/master FOO --onto main
And you'll now be tracking the official source of truth. You can then follow
the Keeping Current
section above to stay up to date.
If you need to then commit work to FreeBSD, you can do so following the
Time to push changes upstream
instructions. You'll need to do the following
once to update the push URL if you are a FreeBSD committer:
% git remote set-url --push freebsd ssh://[email protected]/src.git
(note that gitrepo.freebsd.org will be change to repo.freebsd.org in the future.)
You will also need to add freebsd
as the location to push to. The
author recommends that your upstream github repo remain the default
push location so that you only push things into FreeBSD you intend to
by making it explicit.