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>2013-02-19 04:05:02 +0400
committerJunio C Hamano <gitster@pobox.com>2013-02-19 04:05:03 +0400
commit20a599e2c18dd5b491257d7f8aeb2d2f02221595 (patch)
tree64c0199f2293bff2d4034809b5b50e9637cdd8e6 /Documentation
parent48050fbe15a7266fffcf06c44288761217bb74dd (diff)
parentfa23348e95a3a98ca42a4b74e8f17fb52b95ded8 (diff)
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
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/config.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt
index 481736a471..3bb53da522 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.