aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-02-18 16:05:02 -0800
committerJunio C Hamano <gitster@pobox.com>2013-02-18 16:05:03 -0800
commit20a599e2c18dd5b491257d7f8aeb2d2f02221595 (patch)
tree64c0199f2293bff2d4034809b5b50e9637cdd8e6
parent48050fbe15a7266fffcf06c44288761217bb74dd (diff)
parentfa23348e95a3a98ca42a4b74e8f17fb52b95ded8 (diff)
downloadgit-20a599e2c18dd5b491257d7f8aeb2d2f02221595.tar.gz
git-20a599e2c18dd5b491257d7f8aeb2d2f02221595.tar.xz
Merge branch 'jc/mention-tracking-for-pull-default'
We stopped mentioning `tracking` is a deprecated but supported synonym for `upstream` in pull.default even though we have no intention of removing the support for it. * jc/mention-tracking-for-pull-default: doc: mention tracking for pull.default
-rw-r--r--Documentation/config.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt
index 481736a47..3bb53da52 100644
--- a/Documentation/config.txt
+++ b/Documentation/config.txt
@@ -1811,7 +1811,8 @@ push.default::
+
This is currently the default, but Git 2.0 will change the default
to `simple`.
-* `upstream` - push the current branch to its upstream branch.
+* `upstream` - push the current branch to its upstream branch
+ (`tracking` is a deprecated synonym for this).
With this, `git push` will update the same remote ref as the one which
is merged by `git pull`, making `push` and `pull` symmetrical.
See "branch.<name>.merge" for how to configure the upstream branch.