| Commit message (Expand) | Author | Age | Files | Lines |
* | fix(remote): assert fetch respec is set | Sebastian Thiel | 2015-06-10 | 1 | -0/+14 |
* | fix(remote): don't close stdout on fetch/pull | Sebastian Thiel | 2015-06-10 | 1 | -13/+2 |
* | While parsing errors, also detecting lines starting with error: | Victor Garcia | 2015-06-08 | 1 | -1/+1 |
* | fix(remote): allow to raise during push/fetch | Sebastian Thiel | 2015-04-08 | 1 | -2/+11 |
* | Fixed trailing white space! | Sebastian Thiel | 2015-02-21 | 1 | -1/+1 |
* | `stale_refs()` may now also handle other kinds of references, like tags. | Sebastian Thiel | 2015-02-21 | 1 | -3/+15 |
* | Added 'insert_kwargs_after' flag for consumption by _call_process. | Sebastian Thiel | 2015-02-21 | 1 | -2/+6 |
* | Remote.update() didn't pass kwargs along to git command. | Sebastian Thiel | 2015-01-30 | 1 | -1/+1 |
* | Merge branch 'master' into teeberg-master | Sebastian Thiel | 2015-01-22 | 1 | -5/+13 |
|\ |
|
| * | Fetch now deals with custom refspecs much better. | Sebastian Thiel | 2015-01-22 | 1 | -4/+12 |
| * | Overhauled all tutorials, and placed them in a unit-test. | Sebastian Thiel | 2015-01-22 | 1 | -1/+1 |
* | | Fix some typos | Jonas Trappenberg | 2015-01-21 | 1 | -1/+1 |
|/ |
|
* | Added advance usage examples to tutorial and made minor fixes. | Sebastian Thiel | 2015-01-21 | 1 | -11/+18 |
* | removed debug codeissue-232-reproduction | Sebastian Thiel | 2015-01-21 | 1 | -9/+1 |
* | Remote.fetch|pull() will not use poll/threads anymore as only stderr is read. | Sebastian Thiel | 2015-01-20 | 1 | -4/+9 |
* | Added debug code to keep lines fed into progress handler and the contents of ... | Sebastian Thiel | 2015-01-16 | 1 | -1/+8 |
* | Fixed some doc strings to build correctly with sphinx | Sebastian Thiel | 2015-01-14 | 1 | -7/+5 |
* | Fixed PY3 support. | Sebastian Thiel | 2015-01-08 | 1 | -2/+4 |
* | Auto-update odb caches after fetch or pull. | Sebastian Thiel | 2015-01-08 | 1 | -2/+6 |
* | Added assertion to better detect diff issues. | Sebastian Thiel | 2015-01-08 | 1 | -1/+1 |
* | Added Remote.exists() method, and test. Fixes #229 | Sebastian Thiel | 2015-01-08 | 1 | -0/+13 |
* | Improve error handling of fetch/pull line parsing | Sebastian Thiel | 2015-01-08 | 1 | -1/+1 |
* | Fix flake8 | Sebastian Thiel | 2015-01-07 | 1 | -2/+4 |
* | Implemented non-blocking operations using poll() | Sebastian Thiel | 2015-01-07 | 1 | -42/+24 |
* | test_remote works | Sebastian Thiel | 2015-01-06 | 1 | -4/+6 |
* | Intermediate commit: test_config and test_actor works | Sebastian Thiel | 2015-01-05 | 1 | -5/+6 |
* | initial set of adjustments to make (most) imports work. | Sebastian Thiel | 2015-01-04 | 1 | -14/+15 |
* | Bumped version, updated changelog, reduced code smell | Sebastian Thiel | 2015-01-04 | 1 | -2/+2 |
* | Applied autopep8 | Sebastian Thiel | 2015-01-04 | 1 | -12/+12 |
* | Reduced hackyness of remote reference parsing. | Sebastian Thiel | 2015-01-03 | 1 | -30/+22 |
* | Various fixes and improvements | Sebastian Thiel | 2015-01-03 | 1 | -30/+52 |
* | [IMP] branch names may contain '#' characters | Thomas Rehn | 2015-01-02 | 1 | -1/+1 |
* | Applied autopep8 | Sebastian Thiel | 2014-11-19 | 1 | -25/+25 |
* | pep8 linting (trailing whitespace) | Antoine Musso | 2014-11-16 | 1 | -53/+53 |
* | pep8 linting (whitespace before/after) | Antoine Musso | 2014-11-16 | 1 | -19/+19 |
* | pep8 linting (blank lines expectations) | Antoine Musso | 2014-11-16 | 1 | -3/+5 |
* | pep8 linting (whitespaces) | Antoine Musso | 2014-11-16 | 1 | -89/+89 |
* | Merge branch 'sf-master' of https://github.com/johnsca/GitPython into johnsca... | Sebastian Thiel | 2014-11-15 | 1 | -13/+4 |
|\ |
|
| * | [#5330] Ensure wait() is called on git processes | Cory Johns | 2013-10-09 | 1 | -13/+4 |
* | | Support multiple refspecs in fetch. | Robert Collins | 2014-07-03 | 1 | -1/+9 |
* | | HACK: Removed assertion just to be a bit less annoyed by constant fail | Sebastian Thiel | 2014-06-04 | 1 | -1/+4 |
* | | Fix for #142. Simply ignores lines that begin with ' =' | Derek D. Fedel | 2014-05-16 | 1 | -3/+4 |
* | | tabs to 4 spaces - this won't make integrating the patches easier, but it's p... | Sebastian Thiel | 2014-02-09 | 1 | -614/+614 |
* | | Fixed typo which for some reason came in unnoticed | Sebastian Thiel | 2012-07-24 | 1 | -1/+1 |
* | | Ignore progress lines from the git http backend that start w/ POST ... | Greg Soltis | 2012-01-10 | 1 | -1/+1 |
|/ |
|
* | Fetch info can now deal much better with non-default ref specs, fixes #24, #25 | Sebastian Thiel | 2011-07-04 | 1 | -1/+25 |
* | Fixes #23 | Sebastian Thiel | 2011-07-04 | 1 | -1/+3 |
* | Made remote line parsing more stable. On windows it can be that we encounter ... | Sebastian Thiel | 2011-06-13 | 1 | -2/+2 |
* | Added conditional usage of the --progress flag to all relevant methods, that ... | Sebastian Thiel | 2011-06-07 | 1 | -9/+60 |
* | Add progress tracking for git-clone. | jez | 2011-06-07 | 1 | -41/+9 |