python列表
panxueyan 1/24/2020
# 更新步骤:
在blog更目录把本地更新好的文件推送到远程master分支
git add . git commit -m "update" git push origin master
1
2
3
4用用yarn构建静态文件
yarn build
1
2
3进入更新好的静态文件夹
cd .vuepress/dist
1
2
3把更新好的静态文件推送到远程分支blog-br01
git init git add -A git commit -m 'update' git branch -m main blog-br01 git push -f git@github.com:github653224/blogs.git blog-br01
1
2
3
4
5
6