Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2015-05-18 17:04:55 +0300
committerCarlos Martín Nieto <cmn@dwim.me>2015-05-20 16:08:39 +0300
commit1396c381782f446ae5ea177b0f5c407f90197c97 (patch)
tree1ca57e2cb7d8accf2a2fbda7b04fb3d3543e8703 /CHANGELOG.md
parente3435673b8ed862266b5351b9e18cb55ed55d335 (diff)
errors: add GIT_EEOF to indicate early EOF
This can be used by tools to show mesages about failing to communicate with the server. The error message in this case will often contain the server's error message, as far as it managed to send anything.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ad127aa55..8a0ae0e03 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -93,6 +93,11 @@ support for HTTPS connections insead of OpenSSL.
* `git_stash_pop()` will apply a stashed state (like `git_stash_apply()`)
but will remove the stashed state after a successful application.
+* A new error code `GIT_EEOF` indicates an early EOF from the
+ server. This typically indicates an error with the URL or
+ configuration of the server, and tools can use this to show messages
+ about failing to communicate with the server.
+
### API removals
* `git_remote_save()` and `git_remote_clear_refspecs()` has been