summaryrefslogtreecommitdiff
path: root/sync-wiki.sh
blob: 2eb95db4015922a0451ac7cbc5ae6111d9253948 (plain)
1
2
3
4
5
6
7
8
9
10
11
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