diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2007-09-02 21:10:14 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-09-03 03:08:12 -0700 |
commit | 38944390220425cc3c4208dd31172397e7f18e8c (patch) | |
tree | f5be223d898f8ca293e31393e92684f2a3a128bd /Documentation | |
parent | 1e61b7640d09015213dbcae3564fa27ac6a8c151 (diff) | |
download | git-38944390220425cc3c4208dd31172397e7f18e8c.tar.gz |
Teach "git remote" a mirror mode
When using the "--mirror" option to "git remote add", the refs will not
be stored in the refs/remotes/ namespace, but in the same location as
on the remote side.
This option probably only makes sense in a bare repository.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-remote.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Documentation/git-remote.txt b/Documentation/git-remote.txt index 61a6022ce8..94b9f17772 100644 --- a/Documentation/git-remote.txt +++ b/Documentation/git-remote.txt @@ -10,7 +10,7 @@ SYNOPSIS -------- [verse] 'git-remote' -'git-remote' add [-t <branch>] [-m <branch>] [-f] <name> <url> +'git-remote' add [-t <branch>] [-m <branch>] [-f] [--mirror] <name> <url> 'git-remote' show <name> 'git-remote' prune <name> 'git-remote' update [group] @@ -45,6 +45,10 @@ multiple branches without grabbing all branches. With `-m <master>` option, `$GIT_DIR/remotes/<name>/HEAD` is set up to point at remote's `<master>` branch instead of whatever branch the `HEAD` at the remote repository actually points at. ++ +In mirror mode, enabled with `--mirror`, the refs will not be stored +in the 'refs/remotes/' namespace, but in 'refs/heads/'. This option +only makes sense in bare repositories. 'show':: |