summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--git.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/git.go b/git.go
index 968d404..0459dde 100644
--- a/git.go
+++ b/git.go
@@ -61,6 +61,8 @@ const (
// Object exists preventing operation
ErrExists ErrorCode = C.GIT_EEXISTS
// More than one object matches
+ ErrAmbiguous ErrorCode = C.GIT_EAMBIGUOUS
+ // (backwards compatibility misspelling)
ErrAmbigious ErrorCode = C.GIT_EAMBIGUOUS
// Output buffer too short to hold data
ErrBuffs ErrorCode = C.GIT_EBUFS