diff options
author | Finn Arne Gangstad <finnag@pvv.org> | 2009-04-06 15:41:02 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-04-07 21:52:26 -0700 |
commit | b344e1614b15dfde0ab4dfc175bed1aac39bc264 (patch) | |
tree | f10a28791949617e5075d635fb67ecb851d0e121 /Documentation/git-remote.txt | |
parent | 9a23ba3375e2afa8045a433a3debce99c373beb2 (diff) | |
download | git-b344e1614b15dfde0ab4dfc175bed1aac39bc264.tar.gz git-b344e1614b15dfde0ab4dfc175bed1aac39bc264.tar.xz |
git remote update: Fallback to remote if group does not exist
Previously, git remote update <remote> would fail unless there was
a remote group configured with the same name as the remote.
git remote update will now fall back to using the remote if no matching
group can be found.
This enables "git remote update -p <remote>..." to fetch and prune one
or more remotes, for example.
Signed-off-by: Finn Arne Gangstad <finnag@pvv.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-remote.txt')
-rw-r--r-- | Documentation/git-remote.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/git-remote.txt b/Documentation/git-remote.txt index 0b6e67dbc..9e2b4eaa3 100644 --- a/Documentation/git-remote.txt +++ b/Documentation/git-remote.txt @@ -16,7 +16,7 @@ SYNOPSIS 'git remote set-head' <name> [-a | -d | <branch>] 'git remote show' [-n] <name> 'git remote prune' [-n | --dry-run] <name> -'git remote update' [-p | --prune] [group] +'git remote update' [-p | --prune] [group | remote]... DESCRIPTION ----------- |