summaryrefslogtreecommitdiffstats
path: root/pkg/commands/models
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2021-03-31 22:39:55 +1100
committerJesse Duffield <jessedduffield@gmail.com>2021-04-02 11:00:15 +1100
commit54910fdb76f8a699d2cfb96459b75b60485fd3f7 (patch)
treec015840a1338db2976058f080346821d7f6dfc4b /pkg/commands/models
parent332a3c4cbfd263c34d5f53dd971701d2ca69ab4e (diff)
refactor
Diffstat (limited to 'pkg/commands/models')
-rw-r--r--pkg/commands/models/commit_file.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/pkg/commands/models/commit_file.go b/pkg/commands/models/commit_file.go
index 57a766a46..b6028e221 100644
--- a/pkg/commands/models/commit_file.go
+++ b/pkg/commands/models/commit_file.go
@@ -4,9 +4,6 @@ package models
type CommitFile struct {
Name string
- // 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
}