summaryrefslogtreecommitdiff
path: root/sync-wiki.sh
diff options
context:
space:
mode:
Diffstat (limited to 'sync-wiki.sh')
-rw-r--r--sync-wiki.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/sync-wiki.sh b/sync-wiki.sh
new file mode 100644
index 0000000..2eb95db
--- /dev/null
+++ b/sync-wiki.sh
@@ -0,0 +1,12 @@
+#!/usr/bin/env bash
+#
+# This script can be used to sync the wiki submodule
+# in case you're using github internal wiki option
+#
+
+git pull origin master
+cd wiki
+git pull origin master
+cd ..
+git commit -a -m "updated wiki"
+git push origin master