我在我的私房钱里存了一小块。我已经使用git stash apply将它应用到我的工作副本。现在,我想通过反向应用补丁来撤销这些更改(有点像git revert会做的事情,但针对的是stash)。

有人知道怎么做吗?

澄清:在我的工作副本中有其他更改。我的具体情况很难描述,但您可以想象在存储库中有一些调试或实验代码。现在,它混合在我的工作副本与其他一些变化,我想看看效果与不从隐藏的变化。

目前看来stash还不支持这个功能,但是git的stash apply—reverse将是一个不错的功能。


当前回答

根据git-stash手册,“一个stash被表示为一个提交,它的树记录了工作目录的状态,它的第一个父级是创建stash时在HEAD处的提交,”git stash show -p给我们“记录在stash中的更改,作为隐藏状态与其原始父级之间的差异”。

为了保持其他更改不变,使用git stash show -p | patch——reverse如下所示:

$ git init
Initialized empty Git repository in /tmp/repo/.git/

$ echo Hello, world >messages

$ git add messages

$ git commit -am 'Initial commit'
[master (root-commit)]: created 1ff2478: "Initial commit"
 1 files changed, 1 insertions(+), 0 deletions(-)
 create mode 100644 messages

$ echo Hello again >>messages

$ git stash

$ git status
# On branch master
nothing to commit (working directory clean)

$ git stash apply
# On branch master
# Changed but not updated:
#   (use "git add <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#
#       modified:   messages
#
no changes added to commit (use "git add" and/or "git commit -a")

$ echo Howdy all >>messages

$ git diff
diff --git a/messages b/messages
index a5c1966..eade523 100644
--- a/messages
+++ b/messages
@@ -1 +1,3 @@
 Hello, world
+Hello again
+Howdy all

$ git stash show -p | patch --reverse
patching file messages
Hunk #1 succeeded at 1 with fuzz 1.

$ git diff
diff --git a/messages b/messages
index a5c1966..364fc91 100644
--- a/messages
+++ b/messages
@@ -1 +1,2 @@
 Hello, world
+Howdy all

编辑:

一个轻微的改进是使用git apply来代替patch:

git stash show -p | git apply --reverse

或者,你也可以使用git apply -R作为git apply——reverse的简写。

我最近发现这真的很方便……

其他回答

根据git-stash手册,“一个stash被表示为一个提交,它的树记录了工作目录的状态,它的第一个父级是创建stash时在HEAD处的提交,”git stash show -p给我们“记录在stash中的更改,作为隐藏状态与其原始父级之间的差异”。

为了保持其他更改不变,使用git stash show -p | patch——reverse如下所示:

$ git init
Initialized empty Git repository in /tmp/repo/.git/

$ echo Hello, world >messages

$ git add messages

$ git commit -am 'Initial commit'
[master (root-commit)]: created 1ff2478: "Initial commit"
 1 files changed, 1 insertions(+), 0 deletions(-)
 create mode 100644 messages

$ echo Hello again >>messages

$ git stash

$ git status
# On branch master
nothing to commit (working directory clean)

$ git stash apply
# On branch master
# Changed but not updated:
#   (use "git add <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#
#       modified:   messages
#
no changes added to commit (use "git add" and/or "git commit -a")

$ echo Howdy all >>messages

$ git diff
diff --git a/messages b/messages
index a5c1966..eade523 100644
--- a/messages
+++ b/messages
@@ -1 +1,3 @@
 Hello, world
+Hello again
+Howdy all

$ git stash show -p | patch --reverse
patching file messages
Hunk #1 succeeded at 1 with fuzz 1.

$ git diff
diff --git a/messages b/messages
index a5c1966..364fc91 100644
--- a/messages
+++ b/messages
@@ -1 +1,2 @@
 Hello, world
+Howdy all

编辑:

一个轻微的改进是使用git apply来代替patch:

git stash show -p | git apply --reverse

或者,你也可以使用git apply -R作为git apply——reverse的简写。

我最近发现这真的很方便……

这是对上述答案的补充,但增加了基于消息的git存储的搜索,因为存储数可以在保存新存储时更改。 我写了几个bash函数:

apply(){
  if [ "$1" ]; then
    git stash apply `git stash list | grep -oPm1 "(.*)(?=:.*:.*$1.*)"`
  fi
}
remove(){
  if [ "$1" ]; then
    git stash show -p `git stash list | grep -oPm1 "(.*)(?=:.*:.*$1.*)"` | git apply -R
    git status
  fi
}

创建存储名称(消息)$ git存储保存为“我的存储” 命名为$ apply "my stash" 删除“my stash”

git checkout -f

将删除任何非提交的更改。

你可以按照我分享的图像,以取消藏匿,如果你不小心点了藏匿。

对我来说,签出时我刚刚输入了错误的存储库名称。所以根本就没有遥控器可以拉。

因此,除了检查大小写之外,还要检查分支名称的拼写,或者更好的方法是复制并粘贴它,以排除它。