From: Charles Bailey <charles@hashpling.org>
To: Junio C Hamano <gitster@pobox.com>, git@vger.kernel.org
Cc: Charles Bailey <charles@hashpling.org>
Subject: [PATCH 2/2] (resend) stash: Don't overwrite files that have gone from the index
Date: Thu, 15 Apr 2010 01:24:22 +0100 [thread overview]
Message-ID: <1271291062-32154-2-git-send-email-charles@hashpling.org> (raw)
In-Reply-To: <1271291062-32154-1-git-send-email-charles@hashpling.org>
---
This patch is deliberately not signed off. It feels kludgy and uses a
non-portable xargs invocation.
It is designed as a starting point for discussion, that is all.
git-stash.sh | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/git-stash.sh b/git-stash.sh
index 908aab2..9efc544 100755
--- a/git-stash.sh
+++ b/git-stash.sh
@@ -87,6 +87,8 @@ create_stash () {
export GIT_INDEX_FILE &&
git read-tree -m $i_tree &&
git add -u &&
+ { git diff --quiet --diff-filter=D --cached ||
+ git diff -z --name-only --diff-filter=D --cached | xargs -0 git add --ignore-errors; } &&
git write-tree &&
rm -f "$TMP-index"
) ) ||
--
1.7.1.rc1.241.g4e72f
next prev parent reply other threads:[~2010-04-15 0:24 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-04-15 0:24 [PATCH 1/2] (resend) stash bug: stash can lose data in a file removed from the index Charles Bailey
2010-04-15 0:24 ` Charles Bailey [this message]
2010-04-15 7:33 ` [PATCH 2/2] (resend) stash: Don't overwrite files that have gone " Thomas Rast
2010-04-15 7:38 ` Jeff King
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1271291062-32154-2-git-send-email-charles@hashpling.org \
--to=charles@hashpling.org \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.