diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-05-26 23:40:53 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-05-26 23:40:53 +0200 |
commit | ecf37a1b4c2f70f1fc62a6852f40178bf08b9859 (patch) | |
tree | 72c1746d55162722ae97125f55fc4d052912f3a6 /doc | |
parent | de84cbdd0f9ef97fcd3477b31b040c57192e28d9 (diff) | |
download | gitpython-ecf37a1b4c2f70f1fc62a6852f40178bf08b9859.tar.gz |
index: index-add fixed to always append a newline after each item. In git has unified its way it reads from stdin, now it wants all items to be terminated by a newline usually. Previously, it could have been that it really didn't want to have a termination character when the last item was written to the file. Bumped the minimum requirements to 1.7.0 to be sure it is working as I think it will.
Still, I have to admit that sometime it just appears the closed pipe will not stop git from waiting for more input, at least with the previous implementation
Diffstat (limited to 'doc')
-rw-r--r-- | doc/intro.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/intro.rst b/doc/intro.rst index 476ab4ec..d4106b19 100644 --- a/doc/intro.rst +++ b/doc/intro.rst @@ -15,7 +15,7 @@ Requirements ============ * Git_ tested with 1.5.3.7 -* Requires Git_ 1.6.5.4 or newer if index.add function is to be used +* Requires Git_ 1.7.0 or newer * `Python Nose`_ - used for running the tests * `Mock by Michael Foord`_ used for tests. Requires 0.5 |