summaryrefslogtreecommitdiffstats
path: root/pkg/commands/commit_file.go
blob: a2cf6eb20199091093bf9e92d3e31d1bb5d7b8be (plain)
1
2
3
4
5
6
7
8
9
package commands

// CommitFile : A git commit file
type CommitFile struct {
	Parent        string
	Name          string
	DisplayString string
	Status        int // one of 'WHOLE' 'PART' 'NONE'
}