1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-08-08 22:36:49 +02:00

Wrap an overly long line

This commit is contained in:
Stefan Haller
2024-10-11 11:22:43 +02:00
parent 59a937ee7a
commit f473d23d65

View File

@ -9,7 +9,8 @@ import (
type CherryPicking struct { type CherryPicking struct {
CherryPickedCommits []*models.Commit CherryPickedCommits []*models.Commit
// we only allow cherry picking from one context at a time, so you can't copy a commit from the local commits context and then also copy a commit in the reflog context // we only allow cherry picking from one context at a time, so you can't copy a commit from
// the local commits context and then also copy a commit in the reflog context
ContextKey string ContextKey string
} }