blob: 2aa9bb1e24f9972568967b4eea1c47fe083ab375 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# full path to directory holding the wiki repository (or sys links to
# the repositories)
GITWIKI_BASE = '/home/bnewbold/knowledge/'
# fill path to the git command
GITCOMMAND = '/usr/local/bin/git'
GITPREFIX = 'cd ' +str(GITWIKI_BASE) + '; ' + str(GITCOMMAND) + ' --git-dir=' \
+ str(GITWIKI_BASE) + '/.git'
|