diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-04-12 16:46:41 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-04-12 16:46:41 -0700 |
commit | c276857ee250ca1c3a36cba8358f50ba01e97917 (patch) | |
tree | d7146ab7ab5db2881e9d95efabca0e2c0e7d5244 /Documentation | |
parent | 07fb030efc7fd3d1833b53880dd39e98033326f6 (diff) | |
parent | 27845e9548b7b5b316d89f64546466f2004ee414 (diff) | |
download | git-c276857ee250ca1c3a36cba8358f50ba01e97917.tar.gz |
Merge branch 'fg/remote-prune'
* fg/remote-prune:
add tests for remote groups
git remote update: Fallback to remote if group does not exist
remote: New function remote_is_configured()
git remote update: Report error for non-existing groups
git remote update: New option --prune
builtin-remote.c: Split out prune_remote as a separate function.
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-remote.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Documentation/git-remote.txt b/Documentation/git-remote.txt index c9c0e6f932..9e2b4eaa38 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' [group] +'git remote update' [-p | --prune] [group | remote]... DESCRIPTION ----------- @@ -125,6 +125,8 @@ the configuration parameter remotes.default will get used; if remotes.default is not defined, all remotes which do not have the configuration parameter remote.<name>.skipDefaultUpdate set to true will be updated. (See linkgit:git-config[1]). ++ +With `--prune` option, prune all the remotes that are updated. DISCUSSION |