summaryrefslogtreecommitdiff
path: root/Documentation/howto/using-topic-branches.txt
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-12-21 08:01:00 (GMT)
committerJunio C Hamano <junkio@cox.net>2005-12-21 08:01:00 (GMT)
commitc2f3bf071ee90b01f2d629921bb04c4f798f02fa (patch)
tree08ffe5b40e062d596deee47f3869278f4661a858 /Documentation/howto/using-topic-branches.txt
parent1ed91937e5cd59fdbdfa5f15f6fac132d2b21ce0 (diff)
parent41f93a2c903a45167b26c2dc93d45ffa9a9bbd49 (diff)
downloadgit-f665776185ad074b236c00751d666da7d1977dbe.zip
git-f665776185ad074b236c00751d666da7d1977dbe.tar.gz
git-f665776185ad074b236c00751d666da7d1977dbe.tar.bz2
GIT 1.0.0v1.0.0
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/howto/using-topic-branches.txt')
-rw-r--r--Documentation/howto/using-topic-branches.txt5
1 files changed, 2 insertions, 3 deletions
diff --git a/Documentation/howto/using-topic-branches.txt b/Documentation/howto/using-topic-branches.txt
index 4944297..b3d592f 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