diff options
author | Quy Tonthat <qtonthat@gmail.com> | 2006-12-15 01:17:53 +1100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-12-15 23:51:22 -0800 |
commit | a2e88b35808a8c0334f169c9cbb2301764fb9e5a (patch) | |
tree | f0341b8f6425d967b63438e82ef174a41c8a5ab6 /Documentation | |
parent | a990999e0df3d0518a2fef60feb1ec269e36ada6 (diff) | |
download | git-a2e88b35808a8c0334f169c9cbb2301764fb9e5a.tar.gz git-a2e88b35808a8c0334f169c9cbb2301764fb9e5a.tar.xz |
git-clone documentation
When --use-separate-remote is used on git-clone, the remote
heads are saved under $GIT_DIR/refs/remotes/origin/, not
"$GIT_DIR/remotes/origin/"
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-clone.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/git-clone.txt b/Documentation/git-clone.txt index 985043fac..bfddb21fe 100644 --- a/Documentation/git-clone.txt +++ b/Documentation/git-clone.txt @@ -100,7 +100,7 @@ OPTIONS defined default, typically `/usr/share/git-core/templates`. --use-separate-remote:: - Save remotes heads under `$GIT_DIR/remotes/origin/` instead + Save remotes heads under `$GIT_DIR/refs/remotes/origin/` instead of `$GIT_DIR/refs/heads/`. Only the local master branch is saved in the latter. This is the default. |