summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b59d398)
raw | patch | inline | side by side (parent: b59d398)
author | Richard MUSIL <richard.musil@st.com> | |
Tue, 17 Jul 2007 17:02:57 +0000 (19:02 +0200) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Thu, 19 Jul 2007 00:01:10 +0000 (17:01 -0700) |
Changed filter for username in svn-authors file, so even 'user name' is accepted.
Acked-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Acked-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-svn.perl | patch | blob | history |
diff --git a/git-svn.perl b/git-svn.perl
index 01c39042717c60c9a5b100ac60d2569c991736ea..6c692a79e778a74a484aa4f5364aabaa8619057c 100755 (executable)
--- a/git-svn.perl
+++ b/git-svn.perl
my $log = $cmd eq 'log';
while (<$authors>) {
chomp;
- next unless /^(\S+?|\(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;