Joe Perches <joe <at> perches.com> writes: > Sift out backup files that are commonly created by editors. Ping? -------------- diff --git a/git-send-email.perl b/git-send-email.perl [] @@ -521,7 +521,9 @@ while (defined(my $f = shift @ARGV)) { [] - push @files, grep { -f $_ } map { catfile($f, $_) } + push @files, grep { !/#.+#$/ && !/~$/ && + !/\.bak$/ && !/\.orig$/ && + -f $_ } map { catfile($f, $_) } -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html