Skip to content

Commit 23f6d40

Browse files
sorganovgitster
authored andcommitted
git-svn: stop passing "-m" to "git rev-list"
rev-list doesn't utilize -m. It happens to eat it silently, so this bug went unnoticed. Signed-off-by: Sergey Organov <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 19b2517 commit 23f6d40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

perl/Git/SVN.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1636,7 +1636,7 @@ sub has_no_changes {
16361636
my $commit = shift;
16371637

16381638
my @revs = split / /, command_oneline(
1639-
qw(rev-list --parents -1 -m), $commit);
1639+
qw(rev-list --parents -1), $commit);
16401640

16411641
# Commits with no parents, e.g. the start of a partial branch,
16421642
# have changes by definition.

0 commit comments

Comments
 (0)