Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-06-03 23:06:43 +0400
committerJunio C Hamano <gitster@pobox.com>2014-06-03 23:06:43 +0400
commitb8ef69fe2e837d78250555807073b5405f7c9297 (patch)
tree944d24d1d940611d62908daf79856c90aca60b8b /Documentation
parent6779e43b0dbcaeea84319165b1f7c7480e2fe516 (diff)
parenta01f7f2ba0e73ffbee0fa1ec9a5a78f276cc173d (diff)
Merge branch 'fc/merge-default-to-upstream'
"git merge" without argument, even when there is an upstream defined for the current branch, refused to run until merge.defaultToUpstream is set to true. Flip the default of that configuration variable to true. * fc/merge-default-to-upstream: merge: enable defaulttoupstream by default
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/git-merge.txt5
1 files changed, 2 insertions, 3 deletions
diff --git a/Documentation/git-merge.txt b/Documentation/git-merge.txt
index a3c1fa332a..cf2c374b71 100644
--- a/Documentation/git-merge.txt
+++ b/Documentation/git-merge.txt
@@ -101,9 +101,8 @@ commit or stash your changes before running 'git merge'.
Specifying more than one commit will create a merge with
more than two parents (affectionately called an Octopus merge).
+
-If no commit is given from the command line, and if `merge.defaultToUpstream`
-configuration variable is set, merge the remote-tracking branches
-that the current branch is configured to use as its upstream.
+If no commit is given from the command line, merge the remote-tracking
+branches that the current branch is configured to use as its upstream.
See also the configuration section of this manual page.