diff options
| author | Yehonal <yehonal.azeroth@gmail.com> | 2017-04-14 09:46:56 +0200 |
|---|---|---|
| committer | Yehonal <yehonal.azeroth@gmail.com> | 2017-04-14 09:46:56 +0200 |
| commit | d5009a3bc81a4fdb1208f491624097d93fb13ceb (patch) | |
| tree | 07e8d87925fe3ac60ead4d9d78feb24273bacefd /sync-wiki.sh | |
| parent | eacbcd0f6b029ff82075dd2585c5cd68986d1c2f (diff) | |
| download | wiki-d5009a3bc81a4fdb1208f491624097d93fb13ceb.tar.gz wiki-d5009a3bc81a4fdb1208f491624097d93fb13ceb.tar.bz2 wiki-d5009a3bc81a4fdb1208f491624097d93fb13ceb.zip | |
uploaded sources
Diffstat (limited to 'sync-wiki.sh')
| -rw-r--r-- | sync-wiki.sh | 12 |
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 |
