【Git】本地git仓库如何第一次上传到Github
创建本地 git 仓库
git init
关联远程仓库(没有的话,自行创建一个新的仓库)
link=https://github.com/Achuan-2/111.git
git remote add origin $link
查看 remote 仓库
git remote -v
先把本地文件 commit
git add .
MESSAGE=":tada: first commit"
git commit -m "$MESSAGE"
本地Git repo 强制覆盖远程Git repo 内容
git push origin main --force
之后就正常操作Git repo就好了
git add .
MESSAGE=":memo:[docs]"
git commit -m "$MESSAGE"
git push