diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2017-04-11 23:16:48 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2017-04-11 23:16:48 +0200 |
commit | 7a428a915ce2b7bb0f4fc6dcee77932ebacfabbf (patch) | |
tree | a116c49d89ae0450c9999a85896d1a10ba7d8a0b /plumbing/transport/common.go | |
parent | 116fed7ea746255805f5664d9b6fd7cdb1b52663 (diff) | |
parent | 9b45f468c61a0756dd19d09b64c2b1a88cc99ec5 (diff) | |
download | go-git-7a428a915ce2b7bb0f4fc6dcee77932ebacfabbf.tar.gz |
merge, Repository.Log
Diffstat (limited to 'plumbing/transport/common.go')
-rw-r--r-- | plumbing/transport/common.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plumbing/transport/common.go b/plumbing/transport/common.go index 3fcdef2..d3cfe21 100644 --- a/plumbing/transport/common.go +++ b/plumbing/transport/common.go @@ -27,7 +27,8 @@ import ( var ( ErrRepositoryNotFound = errors.New("repository not found") ErrEmptyRemoteRepository = errors.New("remote repository is empty") - ErrAuthorizationRequired = errors.New("authorization required") + ErrAuthenticationRequired = errors.New("authentication required") + ErrAuthorizationFailed = errors.New("authorization failed") ErrEmptyUploadPackRequest = errors.New("empty git-upload-pack given") ErrInvalidAuthMethod = errors.New("invalid auth method") ErrAlreadyConnected = errors.New("session already established") |