* [PATCH] Make cvsexportcommit remove files too.
@ 2006-09-22 22:35 Robin Rosenberg
0 siblings, 0 replies; only message in thread
From: Robin Rosenberg @ 2006-09-22 22:35 UTC (permalink / raw)
To: git
From: Robin Rosenberg <robin.rosenberg@dewire.com>
---
git-cvsexportcommit.perl | 2 +-
t/t9200-git-cvsexportcommit.sh | 12 ++++++++++++
2 files changed, 13 insertions(+), 1 deletions(-)
diff --git a/git-cvsexportcommit.perl b/git-cvsexportcommit.perl
index d78100c..0b0d186 100755
--- a/git-cvsexportcommit.perl
+++ b/git-cvsexportcommit.perl
@@ -142,7 +142,7 @@ foreach my $f (@files) {
if ($fields[4] eq 'M') {
push @mfiles, $fields[5];
}
- if ($fields[4] eq 'R') {
+ if ($fields[4] eq 'D') {
push @dfiles, $fields[5];
}
}
diff --git a/t/t9200-git-cvsexportcommit.sh b/t/t9200-git-cvsexportcommit.sh
index 1041bb6..524fa2b 100755
--- a/t/t9200-git-cvsexportcommit.sh
+++ b/t/t9200-git-cvsexportcommit.sh
@@ -52,4 +52,16 @@ test_expect_success \
test $(cat CVS/Entries|wc -l) = 3
)'
+test_expect_success \
+ 'Remove file with spaces in file name' \
+ 'echo Ok then >"with spaces.txt" &&
+ rm -v "with spaces.txt" && \
+ git rm "with spaces.txt" && \
+ git commit -a -m "Remove file" &&
+ id=$(git rev-list --max-count=1 HEAD) &&
+ (cd $CVSWORK &&
+ git-cvsexportcommit.perl -v -c $id &&
+ test $(cat CVS/Entries|wc -l) = 2
+ )'
+
test_done
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2006-09-22 22:41 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-09-22 22:35 [PATCH] Make cvsexportcommit remove files too Robin Rosenberg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox