summaryrefslogtreecommitdiff
path: root/git/remote.py
Commit message (Collapse)AuthorAgeFilesLines
* Autopep8 fixes with maximum line length 120Craig Northway2014-07-251-69/+71
|
* tabs to 4 spaces - overall state of this branch is desolate, but fixable. ↵Sebastian Thiel2014-02-091-274/+274
| | | | Needs plenty of work
* First run in order to fix the remote handling. Cleaned up interfaces and ↵Sebastian Thiel2011-06-071-4/+3
| | | | figured out that the implementation really should be specific to the git command. This leaves the interface open for other implemntations which use a different way to provide feedback (as we do not make assumptions about the format of a feedback line)
* Fixed fetch/push/pull implementation. Next up is to integrate the ↵Sebastian Thiel2011-06-071-7/+14
| | | | consolidation changes from master to make clone use the same facilities
* Removed all parts of the reference implementation which doesn't require the ↵Sebastian Thiel2011-04-071-0/+12
| | | | git command. everything else was moved to GitDB. None of the tests is yet expected to run, although git-python should have less trouble getting the tests back up running than GitDB. plenty of code needs to be de-duplicated though in case of the tests, which will be some work
* Moved push and fetch methods partly from remote to the gitcmdobjdb ↵Sebastian Thiel2011-04-051-332/+2
| | | | implementation, including related types. It doesn't yet work, and the omnipresence of the repo imposes a problem right now, as the required ref functionality is not yet part of the gitdb specification. theoretically, the whole ref implementation has to move into gitdb
* Submodule tests are functional once again.Sebastian Thiel2010-12-011-2/+10
| | | | remote: Fixed bug that was caused by the unchecked deletion of an uncached attribute which did not necessarily exist
* remote: fixed incorrect call signature when instantiating GitCommandErrorSebastian Thiel2010-11-301-1/+1
|
* Moved everything into the git subdirectory - some tests still need to be ↵Sebastian Thiel2010-11-251-0/+603
adjusted