summaryrefslogtreecommitdiff
path: root/git/refs
Commit message (Collapse)AuthorAgeFilesLines
* Autopep8 fixes with maximum line length 120Craig Northway2014-07-258-345/+351
|
* tabs to 4 spaces - overall state of this branch is desolate, but fixable. ↵Sebastian Thiel2014-02-098-1374/+1374
| | | | Needs plenty of work
* Basic remote functionality moved to Reference type, as it can in fact be ↵Sebastian Thiel2011-07-043-19/+43
| | | | useful for tags as well, which might end up somewhere in the refs/remotes space. Its not likely that it will ever be used on a pure Reference instance though, but it is the smallest common base
* refs: added constructor flag to allow refs to be instatiated from any path, ↵Sebastian Thiel2011-07-041-4/+6
| | | | including simple test
* Fixed critical issue that would cause a string to be passed to methods that ↵Sebastian Thiel2011-06-081-1/+1
| | | | expect a stream
* symbolic reference handles different types for comparison more gracefully. ↵Sebastian Thiel2011-06-081-1/+3
| | | | Fixed possible issue in test_refs, which occurred in 0.3 previously
* log: non-existing logs no longer throw an exception, but are ignored. Fixed ↵Sebastian Thiel2011-06-082-5/+14
| | | | critical bug which caused packed-ref files to be written with native line endings, which made git fail to parse it. I wonder why I never noticed this before, or ignored it. Unbelievable \!
* git cmd implementation of repository appears to work, at least this is what ↵Sebastian Thiel2011-05-302-4/+4
| | | | the test suggests. Pure python implementation still has some trouble, but this should be very fixable
* Made repository paths methods a property to be compatible with the existing ↵Sebastian Thiel2011-05-102-10/+10
| | | | repo interface. Added submodule interface ... goal is to provide all of the extra repo functionality in custom interfaces
* Started to fix imports - tests still have no chance to work as database ↵Sebastian Thiel2011-05-065-6/+6
| | | | changed drastically. Now the actual work begins
* replaced all gitdb strings with gitSebastian Thiel2011-05-066-10/+10
|
* Added all code from gitdb to gitpython. Next is to make it generally work. ↵Sebastian Thiel2011-05-058-110/+1275
| | | | Then the tests will need some work
* Made most primal imports work, but stopped here as there are many more ↵Sebastian Thiel2011-05-051-1/+1
| | | | changes when doing the merge
* Moved rev_parse code into gitdb, this probably broke pretty much here, which ↵Sebastian Thiel2011-04-295-11/+6
| | | | is still to be fixed of course
* Removed all parts of the reference implementation which doesn't require the ↵Sebastian Thiel2011-04-077-1156/+34
| | | | 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
* Commit.create_from_tree used a now renamed keyword parameter - no test-case ↵Sebastian Thiel2010-11-261-1/+2
| | | | ever runs this code, which is still an issue
* Moved everything into the git subdirectory - some tests still need to be ↵Sebastian Thiel2010-11-257-0/+1405
adjusted