- Notifications
You must be signed in to change notification settings - Fork66
Comparing changes
Open a pull request
base repository:gitpython-developers/gitdb
Uh oh!
There was an error while loading.Please reload this page.
base:master
head repository:gitpython-developers/gitdb
Uh oh!
There was an error while loading.Please reload this page.
compare:fetch_n_push
Uh oh!
There was an error while loading.Please reload this page.
- 15commits
- 55files changed
- 1contributor
Commits on Apr 4, 2011
Added first scetch of a transport DB interface which should be enough…
… to allow an own implementation of the git protocol without breaking clients. It also includes interfaces for the fetchinfo and pushinfo types
Byron committedApr 4, 2011
Commits on Apr 7, 2011
Added ref implementation and tried to fix it so that it has a chance …
…of running. Currently it requires an object implementation which will be ported next. None of the tests is expected to run yet.
Byron committedApr 7, 2011 Initial version of objects. The submodule implementation is left in g…
…it-python for now as it requires plenty of additional features which are currently only available via the git command
Byron committedApr 7, 2011
Commits on Apr 25, 2011
Fixed a few broken tests. test_refs is still not working as it needs …
…more throrough changes based on the interfaces actually available in gitdb. This should work though as all references have iter_* methods which do the actual work.Added git config parser to the mix, including working test - the module is not very interdependent, fortunately.
Byron committedApr 25, 2011
Commits on Apr 26, 2011
Fixed ref test up to the point where there is an issue resolving obje…
…cts in the database for some reason.
Byron committedApr 26, 2011 Fixed reference tests - symbolic refs now need to be created with a g…
…it_dir() providing repository. Currently there is no separate interface for this, which might have to be added at some point just for the sake of completeness
Byron committedApr 26, 2011 Added RepositoryPathMixin as well as ConfigurationMixin. The first me…
…ntioned one still needs to be implemented, and integrated into type hierarchy to be actually useful. A test for the RepositoryPathsMixin would be required as well
Byron committedApr 26, 2011
Commits on Apr 29, 2011
Applied more fixes and an implementation for the RepositoryPathsMixin…
…. This showed that we need to distinguish between plain object dbs with a respective interface and full repositories, which have references and remotes. Ideally, the ones that require only odbs use the odb member, others use the repo member
Byron committedApr 29, 2011 Renaemd odb to repo (once again) as references require a full reposit…
…ory with reference support, as opposed to a plain odb which objects are already happy with. Tests now work up to the point where a rev-parse is required. This could be helped, but revparse could also be implemented somewhere which was the reason for pulling in so much code in the first place
Byron committedApr 29, 2011 First version with some working reference tests. The db implementatio…
…n is still a mess, it really needs to be separated into interfaces and implementations, sorted by type , like pure, pygit(at some point) and so on. This would already allow database implementations to be mixed and matched. One further step to be taken another day would be to 'interfacify' object and reference types, so they could be replaced by different implementations as well including full isinstance support (as isinstance would only check for the base interface). To ease this, the interfaces would just keep their original names, but the implementation would move to types like PureObject, PureSymbolicReference, etc. etc
Byron committedApr 29, 2011 Moved plenty of code around to separate pure python implementation fr…
…om future ones. This will change plenty of imports, which still needs to be fixed. Fortunately, this is a good foundation for getting all the tests fixed one again. Another step is to make the tests more flexible by allowing to run them with different object database easily.
Byron committedApr 29, 2011
Commits on May 4, 2011
First rename session, db/test_base.py works, but there is much more w…
…ork to do
Byron committedMay 4, 2011
Commits on May 5, 2011
- Byron committed
May 5, 2011 - Byron committed
May 5, 2011 Fixed remaining tests as far as possible/necessary before the actual …
…work starts. Oh my ...
Byron committedMay 5, 2011
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:git diff master...fetch_n_push
Uh oh!
There was an error while loading.Please reload this page.