Github自动部署网站

更新仓库

set HTTP_PROXY=http://192.168.123.2:10809
set HTTPS_PROXY=http://192.168.123.2:10809
git add .
git commit -m "更新"
git push -u origin main

新建仓库

新建仓库并创建README.md文件推送

echo "# tddzp" >> README.md
git init
git add README.md
git commit -m "首次推送"
git branch -M main
git remote add origin https://github.com/sogadm/tddzp.git
git push -u origin main