aboutsummaryrefslogtreecommitdiffstats
path: root/options.go
diff options
context:
space:
mode:
Diffstat (limited to 'options.go')
-rw-r--r--options.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/options.go b/options.go
index 0a6eb94..4f913dc 100644
--- a/options.go
+++ b/options.go
@@ -1,7 +1,6 @@
package git
import (
- "crypto"
"errors"
"fmt"
"regexp"
@@ -516,7 +515,7 @@ type CommitOptions struct {
// Signer denotes a cryptographic signer to sign the commit with.
// A nil value here means the commit will not be signed.
// Takes precedence over SignKey.
- Signer crypto.Signer
+ Signer Signer
// Amend will create a new commit object and replace the commit that HEAD currently
// points to. Cannot be used with All nor Parents.
Amend bool