summaryrefslogtreecommitdiff
path: root/commands.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands.go')
-rw-r--r--commands.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands.go b/commands.go
index 5085ed8..7e7c4f3 100644
--- a/commands.go
+++ b/commands.go
@@ -13,8 +13,8 @@ type Cmd interface {
type CmdCommit struct {
Ref string
Mark int // optional; < 1 for non-use
- Author *textproto.UserTime
- Committer textproto.UserTime
+ Author *textproto.Ident
+ Committer textproto.Ident
Msg string
From string
Merge []string
@@ -57,7 +57,7 @@ func (c CmdCommit) fiWriteCmd(fiw *textproto.FIWriter) error {
type CmdTag struct {
RefName string
CommitIsh string
- Tagger textproto.UserTime
+ Tagger textproto.Ident
Data string
}