diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2006-09-21 01:07:54 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-09-20 16:15:45 -0700 |
commit | 11031d7e9f34f6a20ff4a4bd4fa3e5e3c0024a57 (patch) | |
tree | 681e2b85be05abc18b3fdd117b9aa18af4245c01 /setup.c | |
parent | 7dd45e15c259e44b1c8b5ffdfc0c3d002c7f642c (diff) | |
download | git-11031d7e9f34f6a20ff4a4bd4fa3e5e3c0024a57.tar.gz |
add receive.denyNonFastforwards config variable
If receive.denyNonFastforwards is set to true, git-receive-pack will deny
non fast-forwards, i.e. forced updates. Most notably, a push to a repository
which has that flag set will fail.
As a first user, 'git-init-db --shared' sets this flag, since in a shared
setup, you are most unlikely to want forced pushes to succeed.
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'setup.c')
-rw-r--r-- | setup.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -244,6 +244,8 @@ int check_repository_format_version(const char *var, const char *value) repository_format_version = git_config_int(var, value); else if (strcmp(var, "core.sharedrepository") == 0) shared_repository = git_config_perm(var, value); + else if (strcmp(var, "receive.denynonfastforwards") == 0) + deny_non_fast_forwards = git_config_bool(var, value); return 0; } |