summaryrefslogtreecommitdiff
path: root/commands.go
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2017-11-16 17:08:02 -0500
committerLuke Shumaker <lukeshu@lukeshu.com>2017-11-16 17:08:02 -0500
commitfe97df5b5843862d8303cd92586065920e8639f6 (patch)
treec5084f6771b67ed3c22a65be3f2a06ca03361dba /commands.go
parent2b0bd61baca0d83b31dbea7a8e1a670d30a94a22 (diff)
s/UserTime/Ident/
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
}