summaryrefslogtreecommitdiff
path: root/doc/source/changes.rst
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2015-04-08 11:43:10 +0200
committerSebastian Thiel <byronimo@gmail.com>2015-04-08 11:50:49 +0200
commit1c2dd54358dd526d1d08a8e4a977f041aff74174 (patch)
tree43b1e954c59e0a83f80a9697c4cc1b011e8fdb8f /doc/source/changes.rst
parente9f8f159ebad405b2c08aa75f735146bb8e216ef (diff)
downloadgitpython-1c2dd54358dd526d1d08a8e4a977f041aff74174.tar.gz
fix(cmd): throw GitCommandNotFoundError ...
... if it is not found. Previously, especially on windows, this wasn't explicit. Fixes #248, affects #126
Diffstat (limited to 'doc/source/changes.rst')
-rw-r--r--doc/source/changes.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/source/changes.rst b/doc/source/changes.rst
index 35c2f15c..99b578bd 100644
--- a/doc/source/changes.rst
+++ b/doc/source/changes.rst
@@ -12,6 +12,11 @@ Changelog
these operations to never raise. However, that behavious is undesirable as it would effectively hide the fact that there
was an error. See `this issue <https://github.com/gitpython-developers/GitPython/issues/271>`_ for more information.
+* If the git executable can't be found in the PATH or at the path provided by `GIT_PYTHON_GIT_EXECUTABLE`, this is made
+ obvious by throwing `GitCommandNotFound`, both on unix and on windows.
+
+ - Those who support **GUI on windows** will now have to set `git.Git.USE_SHELL = True` to get the previous behaviour.
+
0.3.6 - Features
================
* **DOCS**