Git使用指南

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>

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值