فهرست منبع

Add git init to config hook example

The example code previously required to manually create a git repo first.
Above change automates this.
jre 8 سال پیش
والد
کامیت
1c357a5636
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      config

+ 1 - 1
config

@@ -109,7 +109,7 @@
 #filesystem_close_lock_file = False
 
 # Command that is run after changes to storage
-# Example: git add -A && (git diff --cached --quiet || git commit -m "Changes by "%(user)s)
+# Example: ([ -d .git ] || git init) && git add -A && (git diff --cached --quiet || git commit -m "Changes by "%(user)s)
 #hook =