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 16:51:55 +0300
committerCarlos Martín Nieto <cmn@dwim.me>2015-05-20 16:08:39 +0300
commite3435673b8ed862266b5351b9e18cb55ed55d335 (patch)
tree7c8e63f011948c4817bd923ef5e123deca9d8ea4 /CHANGELOG.md
parentacc573cba3212c637d02520fb520326b36dcdd39 (diff)
ssh: read from stderr if stdout is empty
When we fail to read from stdout, it's typically because the URL was wrong and the server process has sent some output over its stderr output. Read that output and set the error message to whatever we read from it.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 810538c64..ad127aa55 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -45,6 +45,10 @@ support for HTTPS connections insead of OpenSSL.
* The index now uses diffs for `add_all()` and `update_all()` which
gives it a speed boost and closer semantics to git.
+* The ssh transport now reports the stderr output from the server as
+ the error message, which allows you to get the "repository not
+ found" messages.
+
### API additions