下载到本地:
git clone (repo-http-url)
移除原先的远程仓库:
git remote rm origin
设置新的远程仓库:
git remote add origin git@github。。。.git
git remote -v
更新到最新版本并与本地代码融合(有时需手动融合):
git fetch
git diff origin/master
git merge origin/master
在本地追加内容后更新到远程仓库:
git add .
git commit -m "text description"
git push origin master
https://www.cnblogs.com/ailhc/p/6586465.html
https://blog.youkuaiyun.com/jingtingfengguo/article/details/51892864
ssh -T git@github.tamu.edu