diff options
author | Uwe Kleine-König <zeisberg@informatik.uni-freiburg.de> | 2007-01-19 13:46:16 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-19 17:54:33 -0800 |
commit | 060aafc11fb6140f1b33326f03e70dad5762a624 (patch) | |
tree | 948eefea048d8d12e62a35cda87222140dd52a30 /Documentation | |
parent | 18bd8821cace2f830e34574df6df30e072d0ed40 (diff) | |
download | git-060aafc11fb6140f1b33326f03e70dad5762a624.tar.gz |
make --exec=... option to git-push configurable
Having to specify git push --exec=... is annoying if you cannot have
git-receivepack in your PATH on the remote side (or don't want to).
This introduces the config item remote.<name>.receivepack to override
the default value (which is "git-receive-pack").
Signed-off-by: Uwe Kleine-König <zeisberg@informatik.uni-freiburg.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/config.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index da7fde56b4..f1f409d24b 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -356,6 +356,10 @@ remote.<name>.push:: The default set of "refspec" for gitlink:git-push[1]. See gitlink:git-push[1]. +remote.<name>.receivepack:: + The default program to execute on the remote side when pulling. 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. |