summaryrefslogtreecommitdiff
path: root/git/db/py/resolve.py
Commit message (Collapse)AuthorAgeFilesLines
* tabs to 4 spaces - overall state of this branch is desolate, but fixable. ↵Sebastian Thiel2014-02-091-324/+324
| | | | Needs plenty of work
* Initial version of the DulwichType inheritance. For now, it inherits ↵Sebastian Thiel2011-07-071-4/+0
| | | | | | everything from the existing implementation, but one by one things can be reimplmented to use dulwich. It also shows that py 2.6 is quite plagued from its new feature, which is actually a bug, as objects inability to accept any args makes mixins hard to use ...
* git cmd implementation of repository appears to work, at least this is what ↵Sebastian Thiel2011-05-301-2/+1
| | | | the test suggests. Pure python implementation still has some trouble, but this should be very fixable
* Fixed tests far enough to allow basic repository tests to be applied to any ↵Sebastian Thiel2011-05-301-3/+10
| | | | of the new database types. This reduces code duplication to the mere minimum, but allows custom tests to be added on top easily and flexibly
* Finished moving all repository methods to the respective interfaces and ↵Sebastian Thiel2011-05-301-0/+26
| | | | | | implementations. It seems theoretically work together now, although it clearly is much more complex than ever before. The repo package was slimmed down to being a module once again, which is only there for compatability actually
* Intermediate commit with quite some progress in order to put all extra ↵Sebastian Thiel2011-05-291-3/+41
| | | | methods on the default Repo implementation into interfaces or something that can be abstracted. It shows that it would indeed be good to keep the differentiation between Repositories which contain an object database as it is clearly easier to setup any combination of repositories that use git and those that do not, with just the addition of one more level of indirection. Lets see how it will end up
* Started to fix imports - tests still have no chance to work as database ↵Sebastian Thiel2011-05-061-2/+2
| | | | changed drastically. Now the actual work begins
* replaced all gitdb strings with gitSebastian Thiel2011-05-061-5/+5
|
* Added all code from gitdb to gitpython. Next is to make it generally work. ↵Sebastian Thiel2011-05-051-0/+297
Then the tests will need some work