diff options
author | Jyotirmoy Bhattacharya <jyotirmoy@jyotirmoy.net> | 2007-08-05 10:52:15 +0530 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-08-04 22:35:13 -0700 |
commit | 64a476e691cb08c2f8bd6d40cc88fb8ccb9ed955 (patch) | |
tree | 9f3ec207e4de1497d0e42ab9746a1001b92ad664 /Documentation | |
parent | checkout-index needs a working tree (diff) | |
download | tgif-64a476e691cb08c2f8bd6d40cc88fb8ccb9ed955.tar.xz |
Fixed git-push manpage
In git-push it is the remote repository and not the
local repository which is fast forwarded. The description
of the -f option in the git-push manpage gets it the other
way round.
Signed-off-by: Jyotirmoy Bhattacharya <jyotirmoy@jyotirmoy.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-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 74a0da1ed4..0dd9caf867 100644 --- a/Documentation/git-push.txt +++ b/Documentation/git-push.txt @@ -79,7 +79,7 @@ the remote repository. -f, \--force:: Usually, the command refuses to update a remote ref that is - not a descendant of the local ref used to overwrite it. + not an ancestor of the local ref used to overwrite it. This flag disables the check. This can cause the remote repository to lose commits; use it with care. |