git☞常用命令

阅读量: zyh 2021-07-01 11:24:12
Categories: > Tags:

版本

# 查看当前 commit id
git rev-parse HEAD

# 放弃当前 commit id 之后的修改
git reset --hard

暂存

# 临时将修改暂存到堆栈列,并初始化到最后一个 commit id
## 当存在多个暂存的时候,你需要自定义 message
git stash save <message>

# 取出堆栈列相应的暂存,并应用到暂存对应的 commit id 
git stash apply stash@{X}

# 删除堆栈列相应的暂存
git stash drop stash@{X}

# 临时将修改暂存到堆栈列,添加一个默认名,并初始化到最后一个 commit id
## 命名规范:stash@{num}: WIP on <branch_name> : <latest_commit_id> <latest_commit_message>
git stash
# 取出堆栈列最上层的暂存,并应用到暂存对应的 commit id,同时删除暂存
git stash pop