summaryrefslogtreecommitdiff
path: root/lib/git/remote.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed bug when listing remotes - it was based on references which is ↵Sebastian Thiel2009-10-281-9/+2
| | | | incorrect as it cannot always work
* FetchInfo class is not a subclass of Remote class anymore, as more classes ↵Sebastian Thiel2009-10-281-137/+137
| | | | are to be added it cluttered up the view and made things more complex as well
* IterableList: added support for prefix allowing remote.refs.master ↵Sebastian Thiel2009-10-281-5/+14
| | | | | | constructs, previously it was remote.refs['%s/master'%remote] Added first simple test for push support, which shows that much more work is needed on that side to allow just-in-time progress information
* tag handling tests finished, unfortunately there is not yet a rejected case, ↵Sebastian Thiel2009-10-281-0/+8
| | | | but it will assuambly follow with the push tests
* Implemented handling of FETCH_HEAD and tags, some test cases still missing ↵Sebastian Thiel2009-10-271-22/+65
| | | | dealing with deletion and movements of remote tags ( which in fact is discouraged, but we should be able to deal with it, shouldnt we ;)
* Added special cases to test that shows we cannot yet:Sebastian Thiel2009-10-271-1/+1
| | | | | | handle the FETCH_HEAD case and handle tags System needs to be adjusted to take the FETCH_HEAD info into account to cover the tags case
* Added remote stale_refs property including test, tested new remote branch ↵Sebastian Thiel2009-10-271-1/+21
| | | | handling and deletion of stale remote branches
* Added non-fast forward test case, fixed parsing issue caused by initial line ↵Sebastian Thiel2009-10-271-2/+1
| | | | stripping
* implemented test for rejection handling and fixed a bug when parsing remote ↵Sebastian Thiel2009-10-271-8/+31
| | | | reference paths
* Added testing frame for proper fetch testing to be very sure this works as ↵Sebastian Thiel2009-10-271-13/+60
| | | | expected. Plenty of cases still to be tested
* put _make_file helper method into TestBase classSebastian Thiel2009-10-271-6/+39
| | | | remote: prepared FetchInfo class to be returned by fetch and pull. About to implement tests
* remote: Added fetch, pull, push methods to the interface to make these ↵Sebastian Thiel2009-10-211-1/+61
| | | | operations more convenient, like repo.remotes.origin.fetch
* remote.refs now returns an IterableList allowing easier access to the ↵Sebastian Thiel2009-10-211-2/+2
| | | | remotes, and conforming it to the way repo returns its references as well
* Fixed bare repository handling - bare is now a property to prevent writing itSebastian Thiel2009-10-201-1/+1
|
* Implemneted IterableLists for refs, commits and remote objects including ↵Sebastian Thiel2009-10-191-0/+1
| | | | simple tests
* commit.count: is an instance method nowSebastian Thiel2009-10-191-3/+3
| | | | | repo: added head , tag and iter_trees methods for completeness changes: headlines now sorted chronologically
* remote: added tests for creation and removal, finishing the remote interfaceSebastian Thiel2009-10-191-1/+4
|
* Added configuration access including tests to remoteSebastian Thiel2009-10-191-16/+52
| | | | | config: fixed issue that would cause it to abort reading if the file did not exist - this is valid now Test does not work as the configuration parsing does not work as expected - this must be fixed first
* Added remote module and test cases - about to implement remote option handlingSebastian Thiel2009-10-191-0/+186