Error List
run command git pull output error info:
error: cannot lock ref 'refs/remotes/origin/test/stop_cell_proto_migration': 'refs/remotes/origin/test' exists; cannot create 'refs/remotes/origin/test/stop_cell_proto_migration
! [new branch] test/stop_cell_proto_migration -> origin/test/stop_cell_proto_migration (unable to update local ref)
reason: 远程分支已经删除了,本地仍然存在记录,刷新本地仓库即可
git remote prune origin
branch
# 创建本地branch
git branch <branch>
# 当前branch 重命名
git branch -m <branch>
# 列举所有分支 等同于 git branch --list
git branch
# 列举remote branch
git branch -a
# 安全删除branch
git branch -d <branch>
# 强制删除branch
git branch -D <branch>
# 删除remote branch
# 等同于git push origin :<branch>
git push origin --delete <branch>
# 查询commit id对应branch
git branch --contains <commit_id> --all
diff
解释:查看 比较 git管理的文件在 工作区、暂存区和版本库之间的差异
git diff 命令,默认查看的就是 工作区 和 暂存区之间文件的差异
# 工作区和暂存区
# 查看工作区和暂存区之间所有的文件差异
git diff
#
查看具体某个文件在工作区和暂存区之间的差异(多个文件空格分隔)git diff -- [<path>...]
# 工作区和版本库
# 暂存区和版本库
# 不同版本之间
资料:Git基础-git diff 比较文件的差异_NorthCastle的博客-CSDN博客_git 比较文件差异
revert
解释:还原仓库状态的。git revert 接受一个 ref 引用(commit、tag、branch或是HEAD),识别这个ref对应的变更,并且会提交一个新的commit来抵消这个ref产生的变更。
# 恢复到commit之前的变更,产生新提交
git revert <commit>
rm
解释:删除单个文件或文件集合。 git rm 的主要功能是从 Git 索引中删除跟踪的文件。
如果文件的 HEAD 版本与暂存索引或工作树版本之间存在差异,Git 将阻止删除。 这是一种安全机制,可防止删除没有提交的更改。
# 从暂存区和工作区中删除
# 如果删除之前修改过并且已经放到暂存区域的话,则必须要用强制删除选项 -f /--force(忽略 Git 进行的安全检查)
# 递归删除,添加选项 -r
git rm <file>
# 从暂存区域移除,但在工作区保存。使用 --cached 选项
git rm --cached <file>