如何判断是否不再需要 git stash?
是否可以在不执行 git stash apply 的情况下判断存储是否已被应用,因此不再需要?假设我只使用一个分支。
在应用存储时,可以通过使用 pop
而不是 apply
来防止这种情况,因此每次应用存储时都将其删除。但是,我有时使用 git stash 来保存正在进行的工作的快照,而不是仅使用它从一项任务切换到另一项任务。使用 pop 会在一定程度上克服这一点。
Is it possible to tell whether a stash has already been applied, and therefore is no longer required, without doing git stash apply
? Assume that I'm only using one branch.
This could be prevented by using pop
rather than apply
when applying a stash, and therefore get rid of the stash each time it gets applied. However, I sometimes use git stash to keep a snapshot of work in progress, rather than only using it to switch from one task to another. Using pop would defeat that somewhat.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您使用 git diff stash,请确保使用 Git 2.30 (Q1 2021)。
在此之前,查看代码是否“
git stash drop
"(男人)< /sup> 可以安全地删除 refs/stash 已变得更加小心。请参阅 提交 4f44c56(2020 年 10 月 24 日),作者:René Scharfe (
rscharfe
)。(由 Junio C Hamano --
gitster
-- 合并于 提交 30f5257,2020 年 11 月 18 日)因此,使用 git rev-parse --verify --quiet 来检查删除的存储是否是 ast 已被替换。
If you use git diff stash, make sure to use Git 2.30 (Q1 2021).
Before that, the code to see if "
git stash drop
"(man) can safely remove refs/stash has been made more careful.See commit 4f44c56 (24 Oct 2020) by René Scharfe (
rscharfe
).(Merged by Junio C Hamano --
gitster
-- in commit 30f5257, 18 Nov 2020)So the use of
git rev-parse --verify --quiet
to check if the stash dropped was the ast one has been replaced.只需进行比较,您就会看到。
Just make a diff and you will see.
您可以使用以下 shell 脚本来获取带有复选标记前缀的
git stash list
(如果它们已经应用)或者不需要应用它们,因为没有区别。这将为您提供一个类似的列表:
如果您喜欢它,您可以将其添加为 git 别名,如下所示:(
使用 bash 和 zsh)
You can use the following shell script to get
git stash list
prefixed with checkmarks if they have already been applied or there is no need to apply them as there is no difference.This will give you a list like:
And if you like it you can add it as a git alias like that:
(tested with bash and zsh)