Git Commend

git remote add origin <https://github.com/your-username/your-repo-name.git>

把本地 Git 仓库和 GitHub 上的远程仓库关联起来

部分 含义
git remote add 添加一个远程仓库(remote)
origin 给这个远程仓库取个名字,origin 是默认约定俗成的名字
https://github.com/... 这是你在 GitHub 上创建的那个仓库的 URL,也就是远程仓库的位置