* [PATCH] git-bisect: do not get confused by packed-ref
@ 2007-07-27 6:50 Junio C Hamano
0 siblings, 0 replies; only message in thread
From: Junio C Hamano @ 2007-07-27 6:50 UTC (permalink / raw)
To: git
If an unfortunate user runs a pack-ref while a git-bisect is
active, refs/bisect/* references will stay behind even after the
git-bisect finishes, because the clean-up code only paid
attention to loose refs. This has a potential to confuse later
bisect runs greatly.
Ideally we should further fix parts that manually creates the
good references refs/bisect/good-*, and updates bad reference
refs/bisect/bad, but that is a cleanliness not correctness
issue. For 1.5.3, this minimum fix should do.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
---
git-bisect.sh | 10 +++++++++-
1 files changed, 9 insertions(+), 1 deletions(-)
diff --git a/git-bisect.sh b/git-bisect.sh
index 388887a..77dad51 100755
--- a/git-bisect.sh
+++ b/git-bisect.sh
@@ -265,8 +265,16 @@ bisect_reset() {
}
bisect_clean_state() {
+ git for-each-ref --format='%(objectname) %(refname)' refs/bisect |
+ while read sha1 ref
+ do
+ git update-ref -d "$ref" "$sha1"
+ done
+ if current=$(git rev-parse --verify refs/heads/bisect 2>/dev/null)
+ then
+ git update-ref -d refs/heads/bisect "$current"
+ fi
rm -fr "$GIT_DIR/refs/bisect"
- rm -f "$GIT_DIR/refs/heads/bisect"
rm -f "$GIT_DIR/BISECT_LOG"
rm -f "$GIT_DIR/BISECT_NAMES"
rm -f "$GIT_DIR/BISECT_RUN"
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2007-07-27 6:50 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-27 6:50 [PATCH] git-bisect: do not get confused by packed-ref Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox