On 5/7/07, J. Bruce Fields [off-list ref] wrote:
From: J. Bruce Fields <redacted>
I cherry-picked some additional miscellaneous fixes from those suggested
by Santi Béjar, including fixes to:
- correct discussion of repository/HEAD->repository shortcut
- add mention of git-mergetool
- add mention of --track
- mention "-f" as well as "+" for fetch
Cc: Santi Béjar <redacted>
You forgot to CC: the e-mail to me :-)
quoted hunk
diff --git a/Documentation/user-manual.txt b/Documentation/user-manual.txt
index c292b4d..67f5b9b 100644
--- a/Documentation/user-manual.txt
+++ b/Documentation/user-manual.txt
[...]
quoted hunk
@@ -1830,14 +1836,14 @@ Now, assume your personal repository is in the directory ~/proj. We
first create a new clone of the repository:
-------------------------------------------------
-$ git clone --bare proj-clone.git
+$ git clone --bare proj.git
-------------------------------------------------
You missed the ~/proj as in:
$ git clone --bare ~/proj proj.git
What do you think about the rest of my changes, in particular:
@@ -2374,7 +2388,6 @@ then the following commands will all do the same thing:
-------------------------------------------------
$ git fetch git://example.com/proj.git master:ref/remotes/example/master
$ git fetch example master:ref/remotes/example/master
-$ git fetch example example/master
$ git fetch example
-------------------------------------------------
Santi