码迷,mamicode.com
首页 > 其他好文 > 详细

Git 常用命令 和 安装

时间:2018-12-15 00:20:45      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:out   上传   info   reset   round   commit   res   别人   恢复   

  这年头不会点git还真不能与别人进行代码交流

 

技术分享图片

 

 ps: 如上图就是git的工作流程图

  

  git add file   # 将file加入暂存区
  git commit -m ‘创建hello.txt‘   # 提交到仓库 后面是说明
 
  git log     # 查看历史记录
  git status    # 查看暂存区信息

  git reset HEAD^^^   # 将仓库回到缓存中 ^是要恢复的版本 最近HEAD
  git checkout hello.txt   # 将缓存中把hello.txt的数据恢复回来

  git pull      # 从GitHub下拉到本地
  git push origin master    # 从仓库上传到GitHub

 

 

Git 常用命令 和 安装

标签:out   上传   info   reset   round   commit   res   别人   恢复   

原文地址:https://www.cnblogs.com/taozhengquan/p/10122213.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!