git push --exec=... is fine, but having it to specify every time is annoying. This sets the default remote program for pushing to remote <name>. Signed-off-by: Uwe Kleine-König <zeisberg@xxxxxxxxxxxxxxxxxxxxxxxxxx> --- This has (still) a few short comings: a) compiler warning because execute has the type const char*. b) cmdline should overwrite remote.<name>.pushexec w/o the warning. c) the symmetric part for fetch is missing. The idea should be clear. Would a more complete patch be welcome? Best regards Uwe Documentation/config.txt | 4 ++++ builtin-push.c | 7 +++++++ 2 files changed, 11 insertions(+), 0 deletions(-) diff --git a/Documentation/config.txt b/Documentation/config.txt index faa17ba..667628a 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -351,6 +351,10 @@ remote.<name>.push:: The default set of "refspec" for gitlink:git-push[1]. See gitlink:git-push[1]. +remote.<name>.pushexec:: + The default program to execute on the remote side. See + option \--exec of gitlink:git-push[1]. + repack.usedeltabaseoffset:: Allow gitlink:git-repack[1] to create packs that uses delta-base offset. Defaults to false. diff --git a/builtin-push.c b/builtin-push.c index 7a3d2bb..8ea5dea 100644 --- a/builtin-push.c +++ b/builtin-push.c @@ -157,6 +157,13 @@ static int get_remote_config(const char* key, const char* value) else if (config_get_refspecs && !strcmp(key + 7 + config_repo_len, ".push")) add_refspec(xstrdup(value)); + else if (!strcmp(key + 7 + config_repo_len, ".pushexec")) { + if (!execute) { + execute = xmalloc(strlen(value) + 8); + sprintf(execute, "--exec=%s", value); + } else + error("more than one pushexec given"); + } } return 0; } -- 1.5.0.rc1.g581a -- Uwe Kleine-König http://www.google.com/search?q=5+choose+3 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html