mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-06-15 00:15:32 +02:00
bump go-git to fix invalid merge error
This commit is contained in:
4
vendor/github.com/jesseduffield/go-git/v5/config/branch.go
generated
vendored
4
vendor/github.com/jesseduffield/go-git/v5/config/branch.go
generated
vendored
@ -78,13 +78,11 @@ func (b *Branch) marshal() *format.Subsection {
|
||||
return b.raw
|
||||
}
|
||||
|
||||
func (b *Branch) unmarshal(s *format.Subsection) error {
|
||||
func (b *Branch) unmarshal(s *format.Subsection) {
|
||||
b.raw = s
|
||||
|
||||
b.Name = b.raw.Name
|
||||
b.Remote = b.raw.Options.Get(remoteSection)
|
||||
b.Merge = plumbing.ReferenceName(b.raw.Options.Get(mergeKey))
|
||||
b.Rebase = b.raw.Options.Get(rebaseKey)
|
||||
|
||||
return b.Validate()
|
||||
}
|
||||
|
Reference in New Issue
Block a user