summaryrefslogtreecommitdiff
path: root/builtin-init-db.c
diff options
context:
space:
mode:
authorJohannes Schindelin <Johannes.Schindelin@gmx.de>2006-09-20 23:07:54 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-09-20 23:15:45 (GMT)
commit11031d7e9f34f6a20ff4a4bd4fa3e5e3c0024a57 (patch)
tree681e2b85be05abc18b3fdd117b9aa18af4245c01 /builtin-init-db.c
parent7dd45e15c259e44b1c8b5ffdfc0c3d002c7f642c (diff)
downloadgit-11031d7e9f34f6a20ff4a4bd4fa3e5e3c0024a57.zip
git-11031d7e9f34f6a20ff4a4bd4fa3e5e3c0024a57.tar.gz
git-11031d7e9f34f6a20ff4a4bd4fa3e5e3c0024a57.tar.bz2
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 'builtin-init-db.c')
-rw-r--r--builtin-init-db.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin-init-db.c b/builtin-init-db.c
index 5085018..c3ed1ce 100644
--- a/builtin-init-db.c
+++ b/builtin-init-db.c
@@ -311,6 +311,7 @@ int cmd_init_db(int argc, const char **argv, const char *prefix)
*/
sprintf(buf, "%d", shared_repository);
git_config_set("core.sharedrepository", buf);
+ git_config_set("receive.denyNonFastforwards", "true");
}
return 0;