aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/git-pull.txt
diff options
context:
space:
mode:
authorFelipe Contreras <felipe.contreras@gmail.com>2021-07-21 17:15:45 -0500
committerJunio C Hamano <gitster@pobox.com>2021-07-21 16:34:06 -0700
commitd3236bececc24d4b8ddc736d278ce0d3d5ff12d6 (patch)
tree24801c0b833d1c3f0cf83478c0fbcfe98c50e663 /Documentation/git-pull.txt
parentebf3c04b262aa27fbb97f8a0156c2347fecafafb (diff)
downloadgit-d3236bececc24d4b8ddc736d278ce0d3d5ff12d6.tar.gz
doc: pull: fix rebase=false documentation
"git pull --rebase=false" means we merge their history into ours, but it has been described the other way around. Cc: Stephen Haberman <stephen@exigencecorp.com> Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> [jc: updated the log message] Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-pull.txt')
-rw-r--r--Documentation/git-pull.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/git-pull.txt b/Documentation/git-pull.txt
index 5c3fb67c01..7f4b2d1982 100644
--- a/Documentation/git-pull.txt
+++ b/Documentation/git-pull.txt
@@ -117,7 +117,7 @@ When set to `preserve` (deprecated in favor of `merges`), rebase with the
`--preserve-merges` option passed to `git rebase` so that locally created
merge commits will not be flattened.
+
-When false, merge the current branch into the upstream branch.
+When false, merge the upstream branch into the current branch.
+
When `interactive`, enable the interactive mode of rebase.
+