diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-09-29 22:31:37 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-09-29 22:31:37 +0000 |
commit | b06ae34d0b01adfc5399fbbd32a4ebbf5e190737 (patch) | |
tree | 90d25c1d8d050298d5381ace57780e94f5848edf | |
parent | f37b97a8afc850cb337964f990b1c39b722dc1a1 (diff) |
web commit by http://chris-lamb.co.uk/: Add justification for denyNonFastForwards
-rw-r--r-- | doc/setup.mdwn | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/setup.mdwn b/doc/setup.mdwn index 1ed9eca3a..76bb9cc45 100644 --- a/doc/setup.mdwn +++ b/doc/setup.mdwn @@ -138,6 +138,9 @@ This tutorial will walk you through setting up a wiki with ikiwiki. echo .ikiwiki > .gitignore git add index.mdwn .gitignore git commit -m'Initial commit' + # Stop git performing fast forwards -- this is to avoid + # overwriting the remote ref and losing other peoples' + # commits from there. git config receive.denyNonFastForwards true git config core.bare true mv .git $REPO |