diff options
author | wiki <wiki@proton.parabola.nu> | 2016-08-02 21:10:30 +0100 |
---|---|---|
committer | wiki <wiki@proton.parabola.nu> | 2016-08-02 21:10:30 +0100 |
commit | d386934962c15a79703588812dc5815f32d70cbf (patch) | |
tree | 1251b086744a5305855c107eacbcf3e96005ab6e /push_ghpage | |
parent | a5f917bbc55e295896b8084f6657eb8b6abaf8a8 (diff) |
files were sitting here on productionemulatorman/master
Diffstat (limited to 'push_ghpage')
-rw-r--r-- | push_ghpage | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/push_ghpage b/push_ghpage new file mode 100644 index 00000000..de64e2b9 --- /dev/null +++ b/push_ghpage @@ -0,0 +1,12 @@ +#!/bin/sh +git checkout -B gh-pages +git pull origin gh-pages +rm * +rm -rf src +rm -rf test +cp -r build/result/docs/* . +rm -rf build +rm .travis.yml +git add . +git commit -a -m "New documents on github" +git push origin gh-pages |