From: Jyotirmoy Bhattacharya Date: Sun, 5 Aug 2007 05:22:15 +0000 (+0530) Subject: Fixed git-push manpage X-Git-Tag: v1.5.3-rc5~70 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=64a476e691cb08c2f8bd6d40cc88fb8ccb9ed955;p=git.git 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 Signed-off-by: Junio C Hamano --- diff --git a/Documentation/git-push.txt b/Documentation/git-push.txt index 74a0da1ed..0dd9caf86 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.