package commands // CommitFile : A git commit file type CommitFile struct { Parent string Name string DisplayString string Status int // one of 'WHOLE' 'PART' 'NONE' } func (f *CommitFile) ID() string { return f.Name } func (f *CommitFile) Description() string { return f.Name }