mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-12 21:05:48 +02:00
rename Status to PatchStatus
This commit is contained in:
parent
fce7cdcc0a
commit
9f71c8d2b9
3 changed files with 4 additions and 4 deletions
|
@ -6,8 +6,8 @@ type CommitFile struct {
|
|||
Parent string
|
||||
Name string
|
||||
|
||||
// Status tells us whether the file has been wholly or partially added to a patch. We might want to pull this logic up into the gui package and make it a map like we do with cherry picked commits
|
||||
Status int // one of 'WHOLE' 'PART' 'NONE'
|
||||
// PatchStatus tells us whether the file has been wholly or partially added to a patch. We might want to pull this logic up into the gui package and make it a map like we do with cherry picked commits
|
||||
PatchStatus int // one of 'WHOLE' 'PART' 'NONE'
|
||||
|
||||
ChangeStatus string // e.g. 'A' for added or 'M' for modified. This is based on the result from git diff --name-status
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue