forked from git/git
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remote-bzr, remote-hg: fix email address regular expression
Before, strings like "[email protected]" would be converted to "foo. <[email protected]>" when they should be "unknown <[email protected]>". Signed-off-by: Richard Hansen <[email protected]> Reviewed-by: Felipe Contreras <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
- Loading branch information
Showing
3 changed files
with
8 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -215,7 +215,8 @@ test_expect_success 'authors' ' | |
author_test theta "theta < [email protected] >" "theta <[email protected]>" && | ||
author_test iota "iota >[email protected]>" "iota <[email protected]>" && | ||
author_test kappa "kappa < test <at> example <dot> com>" "kappa <unknown>" && | ||
author_test lambda "[email protected]" "Unknown <[email protected]>" | ||
author_test lambda "[email protected]" "Unknown <[email protected]>" && | ||
author_test mu "[email protected]" "Unknown <[email protected]>" | ||
) && | ||
git clone "hg::hgrepo" gitrepo && | ||
|