git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Fix git svn dcommit to work with touched files
@ 2010-08-02 19:58 David D. Kilzer
  2010-08-02 22:20 ` Eric Wong
  0 siblings, 1 reply; 2+ messages in thread
From: David D. Kilzer @ 2010-08-02 19:58 UTC (permalink / raw)
  To: git; +Cc: Eric Wong, David D. Kilzer

The dcommit command fails if an otherwise unmodified file has
been touched in the working directory:

    Cannot dcommit with a dirty index.  Commit your changes
    first, or stash them with `git stash'.

This happens because "git diff-index" reports a difference
between the index and the filesystem:

    :100644 100644 d00491...... 000000...... M      file

The fix is to run "git update-index --refresh" before
"git diff-index" as is done in git-rebase and
git-rebase--interactive before "git diff-files".

This changes dcommit to display a list of modified files before
exiting.

Also add a similar test case for "git svn rebase".

Signed-off-by: David D. Kilzer <ddkilzer@kilzer.net>
---
 git-svn.perl             |    1 +
 t/t9100-git-svn-basic.sh |   11 +++++++++++
 2 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/git-svn.perl b/git-svn.perl
index c416358..b8a98d4 100755
--- a/git-svn.perl
+++ b/git-svn.perl
@@ -494,6 +494,7 @@ sub cmd_set_tree {
 
 sub cmd_dcommit {
 	my $head = shift;
+	command_noisy(qw/update-index --refresh/);
 	git_cmd_try { command_oneline(qw/diff-index --quiet HEAD/) }
 		'Cannot dcommit with a dirty index.  Commit your changes first, '
 		. "or stash them with `git stash'.\n";
diff --git a/t/t9100-git-svn-basic.sh b/t/t9100-git-svn-basic.sh
index 13766ab..d5adae6 100755
--- a/t/t9100-git-svn-basic.sh
+++ b/t/t9100-git-svn-basic.sh
@@ -271,6 +271,17 @@ test_expect_success 'able to dcommit to a subdirectory' "
 	test -z \"\`git diff refs/heads/my-bar refs/remotes/bar\`\"
 	"
 
+test_expect_success 'dcommit should not fail with a touched file' '
+	test_commit "commit-new-file-foo2" foo2 &&
+	test-chmtime =-60 foo &&
+	git svn dcommit
+'
+
+test_expect_success 'rebase should not fail with a touched file' '
+	test-chmtime =-60 foo &&
+	git svn rebase
+'
+
 test_expect_success 'able to set-tree to a subdirectory' "
 	echo cba > d &&
 	git update-index d &&
-- 
1.7.2.1.9.g74fb9

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] Fix git svn dcommit to work with touched files
  2010-08-02 19:58 [PATCH] Fix git svn dcommit to work with touched files David D. Kilzer
@ 2010-08-02 22:20 ` Eric Wong
  0 siblings, 0 replies; 2+ messages in thread
From: Eric Wong @ 2010-08-02 22:20 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git, David D. Kilzer

"David D. Kilzer" <ddkilzer@kilzer.net> wrote:
> The dcommit command fails if an otherwise unmodified file has
> been touched in the working directory:

> Signed-off-by: David D. Kilzer <ddkilzer@kilzer.net>

Thanks David,

I've rearranged your commit subject slightly.

Acked-by: Eric Wong <normalperson@yhbt.net>

... And pushed out to git://git.bogomips.org/git-svn

  David D. Kilzer (1):
        git svn: fix dcommit to work with touched files

  Dmitry Statyvka (1):
        git svn: add an option to recode pathnames

-- 
Eric Wong

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-08-02 22:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-02 19:58 [PATCH] Fix git svn dcommit to work with touched files David D. Kilzer
2010-08-02 22:20 ` Eric Wong

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 NNTP newsgroup(s).