当按存储日期描述它们时,是否可以选择 git 存储?
我可以按日期列出 git stashes,
git stash list --date=local
但如何选择修订版而不得到
fatal: Needed a single revision
I'm able to list git stashes by date with
git stash list --date=local
but how do I select a revision without getting
fatal: Needed a single revision
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在日期两边加上引号:
不会工作,但可以
工作。 (根据给出的日期,它实际上给了我最新的存储,而不是说它无效!)
You need to put quotation marks around the date:
won't work, while
works. (With the date given, it actually gave me the most recent stash, rather than saying it was invalid!)