# HG changeset patch
# User Rob Landley
(If you forget the URL a git repository came from, it's in the file +
If you forget the URL a git repository came from, it's in the file ".git/FETCH_HEAD". Normally you shouldn't need to care, since git remembers -it.)
+it. + +Note that unlike Mercurial, the URLs git uses aren't the same ones you +find repositories at on the web. You have to translate them. For example, +the "stable-queue" repository at which bugfix-only patches for fourth level +dot release of the linux kernel queue up before going in is on the web at +http://git.kernel.org/?p=linux/kernel/git/stable/stable-queue.git. +In this case, the corresponding git repository would be cloned with:
+ +++ +git clone git://git.kernel.org/pub/scm/linux/kernel/git/stable/stable-queue.git ++
I.E. replace "http://git.kernel.org/?p=" with "git://git.kernel.org/pub/scm/".