From f0ffa10c863345ea3a9a301be035f78af175e17c Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Thu, 16 Nov 2017 15:30:34 -0500 Subject: use 'string' instead of '[]byte' for data --- commands.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'commands.go') diff --git a/commands.go b/commands.go index 378b6b9..5085ed8 100644 --- a/commands.go +++ b/commands.go @@ -15,7 +15,7 @@ type CmdCommit struct { Mark int // optional; < 1 for non-use Author *textproto.UserTime Committer textproto.UserTime - Msg []byte + Msg string From string Merge []string Tree []FileAction @@ -58,7 +58,7 @@ type CmdTag struct { RefName string CommitIsh string Tagger textproto.UserTime - Data []byte + Data string } func (c CmdTag) fiWriteCmd(fiw *textproto.FIWriter) error { @@ -90,7 +90,7 @@ func (c CmdReset) fiWriteCmd(fiw *textproto.FIWriter) error { type CmdBlob struct { Mark int - Data []byte + Data string } func (c CmdBlob) fiWriteCmd(fiw *textproto.FIWriter) error { -- cgit v1.2.3-2-g168b