* stage/commit issue when checking out a branch
@ 2009-05-12 16:01 Peter MacMillan
2009-05-12 16:38 ` Junio C Hamano
2009-05-12 16:56 ` [PATCH] Revert "checkout branch: prime cache-tree fully" Junio C Hamano
0 siblings, 2 replies; 3+ messages in thread
From: Peter MacMillan @ 2009-05-12 16:01 UTC (permalink / raw)
To: git
Hello,
I've run into a problem where staging changes, checking out a
different branch, and then commiting results in an empty commit.
Here is a simplified reproduction of the problem:
currently using 1.6.3, verified that it works correctly in git version 1.6.1.3.
New repo:
$ mkdir bug
$ cd bug
$ git init
Initialized empty Git repository in /home/peterm/bug/.git/
New file:
$ echo "Hello" > FILE
$ git add FILE
$ git commit -m "V1"
[master (root-commit) 5aeea22] V1
1 files changed, 1 insertions(+), 0 deletions(-)
create mode 100644 FILE
Simple change:
$ echo "Hello, world." > FILE
$ git add FILE
Move to a different branch:
$ git checkout -b branch
M FILE
Switched to a new branch 'branch'
$ git status
# On branch branch
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# modified: FILE
#
Oh, still on the stage. Great. Commit!
$ git commit -m "V2"
[branch 818175e] V2
$ git show HEAD
commit 818175efc55d2e23871541c5caa2fe771c825b73
Author: Peter MacMillan <peterm@metavera.com>
Date: Tue May 12 11:38:02 2009 -0400
V2
$ git status
# On branch branch
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# modified: FILE
#
Guh? A few of us at the office have hit this and it used to work. The
only way to commit the stage is to reset to HEAD, re-add and then
commit.
Thanks for your help,
Peter MacMillan <peterm@metavera.com>
Application Developer, Metavera Solutions Inc.
502-2221 Yonge Street, Toronto, ON, M4S 2B4
416-598-9300 x 27
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: stage/commit issue when checking out a branch
2009-05-12 16:01 stage/commit issue when checking out a branch Peter MacMillan
@ 2009-05-12 16:38 ` Junio C Hamano
2009-05-12 16:56 ` [PATCH] Revert "checkout branch: prime cache-tree fully" Junio C Hamano
1 sibling, 0 replies; 3+ messages in thread
From: Junio C Hamano @ 2009-05-12 16:38 UTC (permalink / raw)
To: Peter MacMillan; +Cc: git
Sorry; broken as of v1.6.3~60; 83ae209 (checkout branch: prime cache-tree
fully, 2009-04-20) is the culprit.
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] Revert "checkout branch: prime cache-tree fully"
2009-05-12 16:01 stage/commit issue when checking out a branch Peter MacMillan
2009-05-12 16:38 ` Junio C Hamano
@ 2009-05-12 16:56 ` Junio C Hamano
1 sibling, 0 replies; 3+ messages in thread
From: Junio C Hamano @ 2009-05-12 16:56 UTC (permalink / raw)
To: Peter MacMillan; +Cc: git
The logic in 83ae209 (checkout branch: prime cache-tree fully,
2009-04-20) is bogus; checkout can switch branches with a dirty
index and in such a case the tree won't match HEAD.
Add t2014-switch to catch this breakage.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
---
builtin-checkout.c | 9 +--------
t/t2014-switch.sh | 28 ++++++++++++++++++++++++++++
2 files changed, 29 insertions(+), 8 deletions(-)
create mode 100755 t/t2014-switch.sh
diff --git a/builtin-checkout.c b/builtin-checkout.c
index 15f0c32..dc4bfb5 100644
--- a/builtin-checkout.c
+++ b/builtin-checkout.c
@@ -365,17 +365,14 @@ static int merge_working_tree(struct checkout_opts *opts,
int ret;
struct lock_file *lock_file = xcalloc(1, sizeof(struct lock_file));
int newfd = hold_locked_index(lock_file, 1);
- int reprime_cache_tree = 0;
if (read_cache() < 0)
return error("corrupt index file");
- cache_tree_free(&active_cache_tree);
if (opts->force) {
ret = reset_tree(new->commit->tree, opts, 1);
if (ret)
return ret;
- reprime_cache_tree = 1;
} else {
struct tree_desc trees[2];
struct tree *tree;
@@ -411,9 +408,7 @@ static int merge_working_tree(struct checkout_opts *opts,
init_tree_desc(&trees[1], tree->buffer, tree->size);
ret = unpack_trees(2, trees, &topts);
- if (ret != -1) {
- reprime_cache_tree = 1;
- } else {
+ if (ret == -1) {
/*
* Unpack couldn't do a trivial merge; either
* give up or do a real merge, depending on
@@ -457,8 +452,6 @@ static int merge_working_tree(struct checkout_opts *opts,
}
}
- if (reprime_cache_tree)
- prime_cache_tree(&active_cache_tree, new->commit->tree);
if (write_cache(newfd, active_cache, active_nr) ||
commit_locked_index(lock_file))
die("unable to write new index file");
diff --git a/t/t2014-switch.sh b/t/t2014-switch.sh
new file mode 100755
index 0000000..ccfb147
--- /dev/null
+++ b/t/t2014-switch.sh
@@ -0,0 +1,28 @@
+#!/bin/sh
+
+test_description='Peter MacMillan'
+. ./test-lib.sh
+
+test_expect_success setup '
+ echo Hello >file &&
+ git add file &&
+ test_tick &&
+ git commit -m V1 &&
+ echo Hello world >file &&
+ git add file &&
+ git checkout -b other
+'
+
+test_expect_success 'check all changes are staged' '
+ git diff --exit-code
+'
+
+test_expect_success 'second commit' '
+ git commit -m V2
+'
+
+test_expect_success 'check' '
+ git diff --cached --exit-code
+'
+
+test_done
--
1.6.3.9.g6345d
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-05-12 16:57 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-12 16:01 stage/commit issue when checking out a branch Peter MacMillan
2009-05-12 16:38 ` Junio C Hamano
2009-05-12 16:56 ` [PATCH] Revert "checkout branch: prime cache-tree fully" Junio C Hamano
Code repositories for project(s) associated with this public inbox
https://80x24.org/mirrors/git.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).