Skip to content

Commit 243265d

Browse files
committed
add update-site script
1 parent d245891 commit 243265d

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

update-site.sh

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/bin/sh
2+
3+
# go to the gh-pages branch
4+
git checkout gh-pages
5+
6+
# bring gh-pages up to date with master
7+
git rebase master
8+
9+
# commit the changes
10+
git push origin gh-pages
11+
12+
# go back to the master branch
13+
git checkout master

0 commit comments

Comments
 (0)