git-svn: trim leading and trailing whitespaces in author name
authorTobias Klauser <tklauser@distanz.ch>
Mon, 23 Sep 2019 09:55:54 +0000 (11:55 +0200)
committerJunio C Hamano <gitster@pobox.com>
Sat, 28 Sep 2019 04:51:42 +0000 (13:51 +0900)
commit4ddd4bddb1d2ef94bb66e2d35b43d0e324237907
tree1f5ea250b4ed5f0ed305f5bce8c7c3be570b6250
parent5fa0f5238b0cd46cfe7f6fa76c3f526ea98148d9
git-svn: trim leading and trailing whitespaces in author name

In some cases, the svn author names might contain leading or trailing
whitespaces, leading to messages such as:

  Author: user1
   not defined in authors.txt

(the trailing newline leads to the line break). The user "user1" is
defined in authors.txt though, e.g.

  user1 = User <user1@example.com>

Fix this by trimming the author name retreived from svn before using it
in check_author.

Helped-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
perl/Git/SVN.pm