diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-03-23 11:28:13 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-03-23 11:28:14 -0700 |
commit | 61ca378275e83c48343c74a849ff0dcdef9abc91 (patch) | |
tree | 86a974ebc83aaec75bf5b964fc5a85c631db56a3 /Documentation/git-push.txt | |
parent | aa65b8602584fa91558b528527ff9008c1cceb69 (diff) | |
parent | a8bc269f11b34e60f5fdbd8e831a654dd6b6b67e (diff) | |
download | git-61ca378275e83c48343c74a849ff0dcdef9abc91.tar.gz |
Merge branch 'jk/push-config'
Restructure "git push" codepath to make it easier to add new
configuration bits and then add push.followTags configuration that
turns --follow-tags option on by default.
* jk/push-config:
push: allow --follow-tags to be set by config push.followTags
cmd_push: pass "flags" pointer to config callback
cmd_push: set "atomic" bit directly
git_push_config: drop cargo-culted wt_status pointer
Diffstat (limited to 'Documentation/git-push.txt')
-rw-r--r-- | Documentation/git-push.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Documentation/git-push.txt b/Documentation/git-push.txt index e1a46a7958..5171086181 100644 --- a/Documentation/git-push.txt +++ b/Documentation/git-push.txt @@ -128,7 +128,10 @@ already exists on the remote side. Push all the refs that would be pushed without this option, and also push annotated tags in `refs/tags` that are missing from the remote but are pointing at commit-ish that are - reachable from the refs being pushed. + reachable from the refs being pushed. This can also be specified + with configuration variable 'push.followTags'. For more + information, see 'push.followTags' in linkgit:git-config[1]. + --signed:: GPG-sign the push request to update refs on the receiving |