Skip to content

Commit

Permalink
Merge git://bogomips.org/git-svn
Browse files Browse the repository at this point in the history
* git://bogomips.org/git-svn:
  git-svn: parse authors file more leniently
  • Loading branch information
Junio C Hamano committed Sep 10, 2015
2 parents f0bc854 + f7c6de0 commit 1962994
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git-svn.perl
Original file line number Diff line number Diff line change
Expand Up @@ -1924,7 +1924,7 @@ sub load_authors {
my $log = $cmd eq 'log';
while (<$authors>) {
chomp;
next unless /^(.+?|\(no author\))\s*=\s*(.+?)\s*<(.+)>\s*$/;
next unless /^(.+?|\(no author\))\s*=\s*(.+?)\s*<(.*)>\s*$/;
my ($user, $name, $email) = ($1, $2, $3);
if ($log) {
$Git::SVN::Log::rusers{"$name <$email>"} = $user;
Expand Down

0 comments on commit 1962994

Please sign in to comment.