aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/git-push.txt
diff options
context:
space:
mode:
authorJyotirmoy Bhattacharya <jyotirmoy@jyotirmoy.net>2007-08-05 10:52:15 +0530
committerJunio C Hamano <gitster@pobox.com>2007-08-04 22:35:13 -0700
commit64a476e691cb08c2f8bd6d40cc88fb8ccb9ed955 (patch)
tree9f3ec207e4de1497d0e42ab9746a1001b92ad664 /Documentation/git-push.txt
parent4465f410d6a8fa7abc5436aac6f58196f2b618d8 (diff)
downloadgit-64a476e691cb08c2f8bd6d40cc88fb8ccb9ed955.tar.gz
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/git-push.txt')
-rw-r--r--Documentation/git-push.txt2
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.