【Git】本地git仓库如何第一次上传到Github

创建本地 git 仓库

  1. git init

关联远程仓库(没有的话,自行创建一个新的仓库)

  1. link=https://github.com/Achuan-2/111.git
  2. git remote add origin $link

查看 remote 仓库

  1. git remote -v

先把本地文件 commit

  1. git add .
  2. MESSAGE=":tada: first commit"
  3. git commit -m "$MESSAGE"

本地Git repo 强制覆盖远程Git repo 内容

  1. git push origin main --force

之后就正常操作Git repo就好了

  1. git add .
  2. MESSAGE=":memo:[docs]"
  3. git commit -m "$MESSAGE"
  4. git push