原创作品,有什么问题可以一起交流交流。不啰嗦, 直接敲命令贴图
1.使用git clone .....git 将远程仓库克隆到本地
2.推送更改到远程仓库 使用 git push ...git
手动修改那个readme文件,然后提交
3.查看远程仓库信息 git remote | git remote -v | git remote show xxx
4. 使用pull获取最新版本
5. 移除远程仓库 git remote rm xxx即可
6. git push警告 warning: push.default is unset; its implicit value is changing in Git 2.0 from '
matching' to 'simple'......
意思是push.default没有设置,使用如下设置即可。作用及其他设置请自行google。