mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-04 10:34:55 +02:00
3cee37388c
Previously, we would only show the authors based on local commits, but sometimes you want to set a commit author to that of a commit on another branch. Now, so long as you've viewed the branch's commits, the author will appear as a suggestion.
14 lines
197 B
Go
14 lines
197 B
Go
package models
|
|
|
|
import "fmt"
|
|
|
|
// A commit author
|
|
type Author struct {
|
|
Name string
|
|
Email string
|
|
}
|
|
|
|
func (self *Author) Combined() string {
|
|
return fmt.Sprintf("%s <%s>", self.Name, self.Email)
|
|
}
|