Git - 暂存

stash可将未提交的修改保存至堆栈中

1. 添加暂存

git add .						# 把文件加到版本控制里
git stash push [-m "说明"]		# 紧急离开一下,暂时保存当前修改

2. 查看暂存

git stash list						# 查看记录
git stash show [stash@{index}]		# 查看stash修改列表
git stash show -p [stash@{index}]	# 查看stash修改详情

3. 弹出暂存

git stash pop [stash@{index}]		# 弹出某次Stash
git stash apply [stash@{index}]		# 拷贝某次Stash

4. 删除暂存

git stash drop [stash@{index}]		# 删除某次Stash
git stash clear						# 删除全部Stash

参考链接

https://git-scm.com/book/zh/v2

你可能感兴趣的:(Git笔记,git,github)