3.git学习分享--仓库系列

原创作品,有什么问题可以一起交流交流。不啰嗦, 直接敲命令贴图

1.使用git clone .....git 将远程仓库克隆到本地
   3.git学习分享--仓库系列_第1张图片

2.推送更改到远程仓库 使用 git push ...git
   手动修改那个readme文件,然后提交

3.git学习分享--仓库系列_第2张图片
3.查看远程仓库信息 git remote |  git remote -v | git remote show xxx
  3.git学习分享--仓库系列_第3张图片

4. 使用pull获取最新版本
  3.git学习分享--仓库系列_第4张图片
  3.git学习分享--仓库系列_第5张图片

5. 移除远程仓库 git remote rm xxx即可
   3.git学习分享--仓库系列_第6张图片

6. git push警告 warning: push.default is unset; its implicit value is changing in Git 2.0 from '
     matching' to 'simple'......
     意思是push.default没有设置,使用如下设置即可。作用及其他设置请自行google。
    3.git学习分享--仓库系列_第7张图片



你可能感兴趣的:(GIT)