Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经隐藏了很多更改,所以我的git stash list.
git stash list
我正在寻找一个特定的更改,但是查看列表中每个条目的内容是相当乏味的。
但是,我确实知道更改被隐藏的日期,所以我想知道是否有某种方法可以按创建日期过滤列表?
一个 stash 是一个特殊的提交,git stash list是一个快捷方式,git reflog refs/stash并且采用相同的参数
git reflog refs/stash
所以,如果你想要 4 月 4 日的藏品,你可以使用
git stash list --since='Apr 04'
管理您的存储列表由您决定。也许您应该在存储消息中添加日期
git stash save "enter date"
编辑:我认为您可以使用挂钩自动自定义存储消息,但最终似乎并非如此