push: allow --follow-tags to be set by config push.followTags
authorDave Olszewski <cxreg@pobox.com>
Mon, 16 Feb 2015 06:16:19 +0000 (01:16 -0500)
committerJunio C Hamano <gitster@pobox.com>
Sat, 14 Mar 2015 22:08:35 +0000 (15:08 -0700)
Signed-off-by: Dave Olszewski <cxreg@pobox.com>
Helped-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/config.txt
Documentation/git-push.txt
builtin/push.c
contrib/completion/git-completion.bash
index ae6791db128130080915bf127cfa66b850921f43..e01d21cda2811badd7395e68f6c29341c9355eda 100644 (file)
@@ -2079,6 +2079,12 @@ new default).
 
 --
 
+push.followTags::
+       If set to true enable '--follow-tags' option by default.  You
+       may override this configuration at time of push by specifying
+       '--no-follow-tags'.
+
+
 rebase.stat::
        Whether to show a diffstat of what changed upstream since the last
        rebase. False by default.
index ea9757692ac6fa7f58eb8a150f9eef9e30875333..caa187be06d813606fdddfb1f56bd59609898010 100644 (file)
@@ -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
index bba22b86b9b660d6b8bac62a303c07a3dff862d1..57c138bd7bc972bfa337de4c615cbfffb99ecc71 100644 (file)
@@ -473,11 +473,21 @@ static int option_parse_recurse_submodules(const struct option *opt,
 
 static int git_push_config(const char *k, const char *v, void *cb)
 {
+       int *flags = cb;
        int status;
 
        status = git_gpg_config(k, v, NULL);
        if (status)
                return status;
+
+       if (!strcmp(k, "push.followtags")) {
+               if (git_config_bool(k, v))
+                       *flags |= TRANSPORT_PUSH_FOLLOW_TAGS;
+               else
+                       *flags &= ~TRANSPORT_PUSH_FOLLOW_TAGS;
+               return 0;
+       }
+
        return git_default_config(k, v, NULL);
 }
 
index c21190d7510c173482b7784f9e8c4bf0b56cb1e1..cffb2b8d66c624b1267a512ca09a5fe6b62293fa 100644 (file)
@@ -2188,6 +2188,7 @@ _git_config ()
                pull.octopus
                pull.twohead
                push.default
+               push.followTags
                rebase.autosquash
                rebase.stat
                receive.autogc