| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-05-26 | fix(remote): real-time reading of lines from stderr | Sebastian Thiel | |
| That way, progress usage will behave as expected. Fixes #444 | |||
| 2016-05-26 | chore(compat): another attempt to get travis right | Sebastian Thiel | |
| 2016-05-26 | chore(compat): re-add allowed breakage of py2.6 | Sebastian Thiel | |
| As inspired by comments in #431 | |||
| 2016-05-26 | Merge pull request #443 from boegel/fix_ordereddict | Sebastian Thiel | |
| import OrderedDict from git.odict rather than directly from collections, to pix Py2.6 compatibility | |||
| 2016-05-26 | import OrderedDict from git.odict rather than directly from collections, to ↵ | Kenneth Hoste | |
| pix Py2.6 compatibility | |||
| 2016-05-25 | fix(remote): better array truncation logic | Sebastian Thiel | |
| Previously, the logic was not correct. Now it should work either way, truncating the correct list to assure both always have the same length. Related to #442 | |||
| 2016-05-25 | fix(remote): remove assertion in favour of runtime stability | Sebastian Thiel | |
| Fixes #442 | |||
| 2016-05-25 | chore(changes): put fix to correct patch level | Sebastian Thiel | |
| 2016-05-25 | fix(requirements): now works with tox | Sebastian Thiel | |
| 2016-05-25 | fix(RemoteProgress): improve message sanitization | Sebastian Thiel | |
| Don't allow `, ` prefixes or suffixes in messages. Fixes #438 | |||
| 2016-05-24 | Fix link to latest changelog | Vincent Driessen | |
| 2016-05-24 | Fixes for RST syntax | Vincent Driessen | |
| 2016-05-24 | Bump the version to 2.0.32.0.3 | Vincent Driessen | |
| 2016-05-24 | Wrap long lines for display in terminals | Vincent Driessen | |
| 2016-05-24 | Add fix to changelog | Vincent Driessen | |
| 2016-05-24 | Merge branch 'jonathanchu-master' | Vincent Driessen | |
| 2016-05-24 | Ignore trailing last empty string in .split() output | Vincent Driessen | |
| 2016-05-24 | Check if byte string is empty for py3 compatibility | Jonathan Chu | |
| 2016-05-24 | fix(cmd): fix with_stdout implementation | Sebastian Thiel | |
| Admittedly this fix is solely based on the documentation provided for this parameter, which indicated a different intend than was actually implemented. Also I don't believe doing this will cause any harm. As a special note: the call to `open(os.devnull, 'wb')` does not seem leak the handle, apparently it is given as-is to the subprocess, which will then close it naturally. This was tested using an interactive session via `htop` on osx. Fixes #437 | |||
| 2016-05-24 | Split lines by new line characters | Jonathan Chu | |
| Opt to split lines by the new line character instead of letting `splitlines()` do this. This helps catch the issue when there are special characters in the line, particular the commit summary section. | |||
| 2016-05-24 | fix(cmd): don't catch progress handler exceptions | Sebastian Thiel | |
| Fixes #435 | |||
| 2016-05-19 | Merge pull request #433 from StevenWColby/master | Sebastian Thiel | |
| Need spaces in Emacs style encoding comment | |||
| 2016-05-19 | Merge pull request #431 from guyzmo/fix-opt_arg-order | Sebastian Thiel | |
| Fix order of operators before executing the git command | |||
| 2016-05-19 | Use correct mode for executable files | Sebastian Thiel | |
| Fixes #430 | |||
| 2016-05-19 | Clarify costs of certain properties | Sebastian Thiel | |
| Fixes #428 | |||
| 2016-05-19 | Deprecate Diffable.rename for .renamed_file | Sebastian Thiel | |
| Fixes #426 | |||
| 2016-05-18 | Need spaces in Emacs style encoding comment | Steven Colby | |
| Although it's hard to see, PEP-0263 does have ws delimiting the 'coding' string. This commit will fix the root cause of (at least) one bug: https://lists.fedoraproject.org/archives/list/eclipse-sig@lists.fedoraproject.org/thread/5XQ5JRHG6DPPMGRDU7TA2AO4EYS2H7AG/ | |||
| 2016-05-12 | Fix order of operators before executing the git command | Guyzmo | |
| Since Python 3.3, the hash value of an object is seeded randomly, making it change between each call. As a consequence, the `dict` type relying on the hash value for the order of the items upon iterating on it, and the parameters passed to `git` being passed as `kwargs` to the `execute()` method, the order of parameters will change randomly between calls. For example, when you call `git.remote.pull()` in a code, two consecutives run will generate: 1. git pull --progress -v origin master 2. git pull -v --progress origin master Within the `transform_kwargs()` method, I'm promoting `kwargs` into an `collections.OrderedDict` being built with `kwargs` sorted on the keys. Then it will ensure that each subsequent calls will execute the parameters in the same order. | |||
| 2016-05-11 | Merge pull request #429 from inderpreet99/fix-reqs-doc | Sebastian Thiel | |
| Update requirements doc | |||
| 2016-05-10 | Update requirements doc | inderpreet99 | |
| 2016-04-28 | This is 2.0.22.0.2 | Vincent Driessen | |
| 2016-04-28 | Include doc sources in sdist | Vincent Driessen | |
| 2016-04-25 | Exclude *.pyc files from source tarballs | Vincent Driessen | |
| 2016-04-24 | Add contributors | Vincent Driessen | |
| 2016-04-24 | Remove check that didn't work as expected2.0.1 | Vincent Driessen | |
| 2016-04-24 | This is 2.0.1 | Vincent Driessen | |
| 2016-04-24 | Automate steps to upload to PyPI | Vincent Driessen | |
| 2016-04-24 | Update changelog | Vincent Driessen | |
| 2016-04-24 | Allow "@" sign in fetch output lines | Vincent Driessen | |
| 2016-04-24 | Information on how to make a release on pypi | Sebastian Thiel | |
| 2016-04-24 | set upcoming version | Sebastian Thiel | |
| 2016-04-24 | Travis should now be able to test tags | Sebastian Thiel | |
| It's just a guess, maybe we are lucky. The original problem is that travis checks out tags without branches, and thus checking out master does only work if travis runs on master. With tags, it will only heckout and locally know the tag in question. The changes should allow it to retry and create the master branch instead. | |||
| 2016-04-22 | Fix assertion2.0.0 | Sebastian Thiel | |
| Who would have thought we ever go 2.0 ;). | |||
| 2016-04-22 | version 2.0.0 | Sebastian Thiel | |
| 2016-04-22 | Declare support for py3.5 | Sebastian Thiel | |
| 2016-04-20 | Add change log entry | Vincent Driessen | |
| 2016-04-20 | Bump minor instead | Vincent Driessen | |
| 2016-04-20 | Add change log entry | Vincent Driessen | |
| 2016-04-20 | Merge pull request #414 from nvie/support-full-datetimes-on-commits | Sebastian Thiel | |
| Add support for getting "aware" datetime info | |||
| 2016-04-20 | Merge pull request #415 from nvie/fix-for-unicode-paths | Sebastian Thiel | |
| Fix diff patch parser for paths with unsafe chars | |||
