summaryrefslogtreecommitdiff
path: root/contrib/git-svn
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2006-05-30 02:03:46 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-05-30 06:14:50 (GMT)
commit037b048eceafa129903d6327d3565c543f5895bb (patch)
treeefed3e2460718de31746528b28b28c5b20f2d3d5 /contrib/git-svn
parent3c4c7351c030a18fa94076ffe62f534f890e9602 (diff)
downloadgit-037b048eceafa129903d6327d3565c543f5895bb.zip
git-037b048eceafa129903d6327d3565c543f5895bb.tar.gz
git-037b048eceafa129903d6327d3565c543f5895bb.tar.bz2
git-svn: remove assertion that broke with older versions of svn
svn < 1.3.x would display changes to keywords lines as modified if they aren't expanded in the working copy. We already check for changes against the git tree here, so checking against the svn one is probably excessive. Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'contrib/git-svn')
-rwxr-xr-xcontrib/git-svn/git-svn.perl1
1 files changed, 0 insertions, 1 deletions
diff --git a/contrib/git-svn/git-svn.perl b/contrib/git-svn/git-svn.perl
index b3e0684..aac8779 100755
--- a/contrib/git-svn/git-svn.perl
+++ b/contrib/git-svn/git-svn.perl
@@ -567,7 +567,6 @@ sub precommit_check {
sub svn_checkout_tree {
my ($svn_rev, $treeish) = @_;
my $from = file_to_s("$REV_DIR/$svn_rev");
- assert_svn_wc_clean($svn_rev);
assert_tree($from);
print "diff-tree $from $treeish\n";
my $pid = open my $diff_fh, '-|';