git add
git commit
git status
git log
git diff
git relog
git log --graph 查看分支合并图
git reset (--hard HEAD^) 回退版本
git reset HEAD <file>
git checkout -- <file> 撤销工作区的修改
git checkout -b <branch name> 创建并切换到新分支(git branch <branch name> + git checkout <branch name>
git checkout <branch name> 切换分支
git merge <name> 合并某分支到当前分支
git merge --no-ff <name> 不适用fast forward进行合并分支(这样git log可以查到合并信息)
git branch 查看分支
git branch <branch name> 创建分支
git branch -d <name> 删除分支
git stash 保存已经在暂存区的文件
git stash apply 恢复(并不删除stash内容)
git stash pop 恢复(删除stash内容)
git stash drop 删除stash内容
网友评论