Code

Fixed git-push manpage
authorJyotirmoy Bhattacharya <jyotirmoy@jyotirmoy.net>
Sun, 5 Aug 2007 05:22:15 +0000 (10:52 +0530)
committerJunio C Hamano <gitster@pobox.com>
Sun, 5 Aug 2007 05:35:13 +0000 (22:35 -0700)
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>
Documentation/git-push.txt

index 74a0da1ed49f5b3742e97a1475dc671496f481ea..0dd9caf86799e1648fde8895af918f6f4806d202 100644 (file)
@@ -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.