为什么要添加远程库呢?
第一 做一个备份
第二 可以让别人一起来协同操作
步骤:
在github上面创建一个仓库
然后
echo "# Demo" >> README.md git init git add README.md git commit -m "first commit" git remote add origin https://github.com/supermanxkq/Demo.git git push -u origin master
删除关联
$ git remote rm origin