2020-09-29 18:48:38 +10:00
package models
2019-03-09 23:42:10 +09:00
// CommitFile : A git commit file
type CommitFile struct {
2020-08-22 18:29:09 +10:00
// Parent is the identifier of the parent object e.g. a commit SHA if this commit file is for a commit, or a stash entry ref like 'stash@{1}'
2020-08-23 14:20:28 +10:00
Parent string
Name string
2020-08-23 15:04:12 +10:00
// 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'
2020-08-23 14:20:28 +10:00
ChangeStatus string // e.g. 'A' for added or 'M' for modified. This is based on the result from git diff --name-status
2019-03-09 23:42:10 +09:00
}
2020-08-22 09:01:14 +10:00
func ( f * CommitFile ) ID ( ) string {
return f . Name
}
2020-08-22 10:14:53 +10:00
func ( f * CommitFile ) Description ( ) string {
return f . Name
}