document process
This commit is contained in:
parent
6bd6faa956
commit
a1aa259c1a
16
README.md
Normal file
16
README.md
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
# Gen pages:
|
||||||
|
|
||||||
|
```
|
||||||
|
git clone <repo>
|
||||||
|
trunk build --release --public-url '.'
|
||||||
|
cd dist
|
||||||
|
git init
|
||||||
|
git remote add origin <repo>
|
||||||
|
# remove old pages branch
|
||||||
|
git push origin -d pages
|
||||||
|
git checkout -b pages
|
||||||
|
git add *
|
||||||
|
git commit -m "gen pages"
|
||||||
|
# push new pages branch
|
||||||
|
git push -u origin pages
|
||||||
|
```
|
Loading…
Reference in a new issue