diff options
author | Jeff King <peff@peff.net> | 2006-08-02 17:28:16 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-02 20:30:42 +0200 |
commit | 8f615493e6b6fd47bc4011c264cb7e6f01052d37 (patch) | |
tree | 54d388009f2b78fafb8b23aa580eba7f3ab248fb /Documentation/git-push.txt | |
parent | Remove cmd_usage() routine and re-organize the help/usage code. (diff) | |
download | git-8f615493e6b6fd47bc4011c264cb7e6f01052d37.tar.xz git-8f615493e6b6fd47bc4011c264cb7e6f01052d37.zip |
git-push: allow -f as an alias for --force
This was already documented in the options section of the manpage. This
patch implements it, adds it to the usage message, and mentions it at the
top of the manpage.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-push.txt')
-rw-r--r-- | Documentation/git-push.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/git-push.txt b/Documentation/git-push.txt index 56afd64f42..d4ae99fa53 100644 --- a/Documentation/git-push.txt +++ b/Documentation/git-push.txt @@ -8,7 +8,7 @@ git-push - Update remote refs along with associated objects SYNOPSIS -------- -'git-push' [--all] [--tags] [--force] <repository> <refspec>... +'git-push' [--all] [--tags] [-f | --force] <repository> <refspec>... DESCRIPTION ----------- |