Git 常用命令 和 安装
Posted taozhengquan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git 常用命令 和 安装相关的知识,希望对你有一定的参考价值。
这年头不会点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 常用命令 和 安装的主要内容,如果未能解决你的问题,请参考以下文章