-
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.
Fix author ident cache being keyed by email only
This addresses the issue where an author name change "wins" and tig shows it for all historical commits by same email under old names Addresses jonas#526 , jonas/tig/jonas#424
- Loading branch information
Mina Naguib
committed
Nov 28, 2016
1 parent
c3ffa59
commit 065fd45
Showing
2 changed files
with
11 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,6 +75,7 @@ struct time { | |
}; | ||
|
||
struct ident { | ||
const char *key; | ||
const char *name; | ||
const char *email; | ||
}; | ||
|
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