diff options
author | Junio C Hamano <junkio@cox.net> | 2005-12-19 00:31:08 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-12-19 00:31:08 -0800 |
commit | 3af849a3dae9442767668cd2045e360225724558 (patch) | |
tree | 27c5d596fade4a77d362cb342a36b4e84f75da37 | |
parent | 112d0bafd620c0e0f10614a3ba021d4de4fae331 (diff) | |
download | git-3af849a3dae9442767668cd2045e360225724558.tar.gz git-3af849a3dae9442767668cd2045e360225724558.tar.xz |
howto/using-topic-branches: Recommend public URL git://git.kernel.org/
Recommending this means subsystem maintainers do not have to log-in
just to resync with upstream.
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r-- | Documentation/howto/using-topic-branches.txt | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Documentation/howto/using-topic-branches.txt b/Documentation/howto/using-topic-branches.txt index 494429738..b3d592fc3 100644 --- a/Documentation/howto/using-topic-branches.txt +++ b/Documentation/howto/using-topic-branches.txt @@ -42,8 +42,7 @@ So here is the step-by-step guide how this all works for me. First create your work tree by cloning Linus's public tree: - $ git clone \ - master.kernel.org:/pub/scm/linux/kernel/git/torvalds/linux-2.6.git work + $ git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git work Change directory into the cloned tree you just created @@ -53,7 +52,7 @@ Set up a remotes file so that you can fetch the latest from Linus' master branch into a local branch named "linus": $ cat > .git/remotes/linus - URL: master.kernel.org:/pub/scm/linux/kernel/git/torvalds/linux-2.6.git + URL: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git Pull: master:linus ^D |