Use git config --global user.email
for email address in automatic Co-authored-by
(#32624)
Release Notes: - Automatic population of `Co-authored-by` now uses `git config --global user.email` --------- Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com> Co-authored-by: Conrad <conrad@zed.dev>
This commit is contained in:
parent
e56a027bea
commit
7d708c14e4
24 changed files with 188 additions and 69 deletions
|
@ -189,6 +189,8 @@ message UpdateProject {
|
|||
|
||||
message JoinProject {
|
||||
uint64 project_id = 1;
|
||||
optional string committer_email = 2;
|
||||
optional string committer_name = 3;
|
||||
}
|
||||
|
||||
message JoinProjectResponse {
|
||||
|
|
|
@ -7,10 +7,10 @@ message PeerId {
|
|||
}
|
||||
|
||||
message User {
|
||||
reserved 4;
|
||||
uint64 id = 1;
|
||||
string github_login = 2;
|
||||
string avatar_url = 3;
|
||||
optional string email = 4;
|
||||
optional string name = 5;
|
||||
}
|
||||
|
||||
|
@ -24,4 +24,6 @@ message Collaborator {
|
|||
uint32 replica_id = 2;
|
||||
uint64 user_id = 3;
|
||||
bool is_host = 4;
|
||||
optional string committer_name = 5;
|
||||
optional string committer_email = 6;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue