diff options
-rw-r--r-- | bn_django/git_wiki/settings.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bn_django/git_wiki/settings.py b/bn_django/git_wiki/settings.py index 2aa9bb1..ed07f53 100644 --- a/bn_django/git_wiki/settings.py +++ b/bn_django/git_wiki/settings.py @@ -3,8 +3,11 @@ # the repositories) GITWIKI_BASE = '/home/bnewbold/knowledge/' +# leave this blank (NO WHITE SPACE) unless you're using a bare repo +GITWIKI_NAME = '' + # fill path to the git command GITCOMMAND = '/usr/local/bin/git' GITPREFIX = 'cd ' +str(GITWIKI_BASE) + '; ' + str(GITCOMMAND) + ' --git-dir=' \ - + str(GITWIKI_BASE) + '/.git' + + str(GITWIKI_BASE) + '/' + GITWIKI_NAME + '.git' |