Git学习笔记

Git作为目前最最流行的免费开源异步版本控制软件,被广泛使用,无论是大厂还是个人。而廖雪峰写的GIT教程,可谓风趣幽默,使我们对GIT的前世今生都有所掌握。

常用密令

git init // 初始化仓库
git status // 查看当前仓库的变更状态
git add [filename  ]  //添加待提交文件至暂存区(Stage)
git commit -m 'some description'  // 提交变更,并简要说明
git diff [filename]  // 不同版本的文件差异比较
git log  // 查看提交记录
git reset HEAD^  // 回退至上一版本
git reflog  // 查看所有操作记录
git checkout -- [filename]  // 回复工作区至最近一次提交或者暂存

git remote add origin git@server-name:path/repo-name.git // 建立本地库与远程库的联系
git clone // 克隆远程仓库至本地
git push  // 推送本地提交至远程库
git pull  // 拉取远程库的提交至本地库

你可能感兴趣的:(Git学习笔记)