Git 命令:
分支
查看当前分支: git branch
查看远程分支: git branch -a
切换分支: git checkout master/develop
创建分支:git branch <name>
切换分支:git checkout <name>
创建+切换分支: git checkout -b <name>
合并某分支到当前分支: git merge <name>
git merge master
删除分支: git branch -d <name>
git branch -D <name>强行删除
分支推到远程: git push origin test
删除远程分支: git push origin :branch-name
拉取远端分支: git checkout -b branch-name origin branch-name
提交记录
查看提交记录: git log -2 //查看最近两条记录
版本恢复
恢复某个文件:git checkout <filename>
恢复线上版本:git reset --hard 139dcfaa558e3276b30b6b2e5cbbb9c00bbdca96
放到暂存区 git add
从暂存区移除 git reset HEAD file
恢复文件 git checkout file
网友评论