3

我单击“应用存储”,我收到以下错误:

git -c diff.mnemonicprefix=false -c core.quotepath=false stash apply stash@{0}
fatal: ambiguous argument 'stash@0': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions

我能做些什么?SourceTree 显示我的存储是存在的,但它真的存在吗?有没有办法可以恢复存储中的内容?我对 stash 很陌生。我可以从命令行 git 应用我的存储(假设它仍然存在)吗?

4

1 回答 1

4

在此页面上找到答案。

使用以下命令,一切正常:

git stash apply stash@{0}
于 2013-11-11T21:37:52.120 回答