失效链接处理 |
Git常用命令面试题 60道 PDF 下载
本站整理下载:
相关截图:
主要内容:
创建 commit
git commit
将工作区指定文件恢复成和暂存区一致
git checkout 文件1 文件2 文件3
将暂存区指定文件恢复成和 HEAD 一致
git reset 文件1 文件2 文件3
将暂存区和工作区所有文件恢复成和 HEAD 一样
git reset --hard
用 difftool 比较任意两个 commit 的差异
git difftool 提交1 提交2
查看哪些文件没被 Git 管控
git ls-files --others
将未处理完的变更先保存到 stash 中
git stash
临时任务处理完后继续之前的工作
pop 不保留 stash
apply 保留 stash
git stash pop
git stash apply
查看所有 stash
git stash list
取回某次 stash 的变更
git stash pop stash@{数字n}
优雅修改最后一次 commit
git add.
git commit --amend
分支操作
查看当前工作分支及本地分支
git branch -v
查看本地和远端分支
git branch -av
查看远端分支
git branch -rv
切换到指定分支
git checkout 指定分支
基于当前分支创建新分支
git branch 新分支
基于指定分支创建新分支
git branch 新分支 指定分支
基于某个 commit 创建分支
git branch 新分支 某个 commit 的 id
|