summaryrefslogtreecommitdiff
path: root/git/repo/base.py
Commit message (Collapse)AuthorAgeFilesLines
* Finished moving all repository methods to the respective interfaces and ↵Sebastian Thiel2011-05-301-78/+0
| | | | | | 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-624/+11
| | | | 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
* Made repository paths methods a property to be compatible with the existing ↵Sebastian Thiel2011-05-101-39/+0
| | | | 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-061-8/+6
| | | | changed drastically. Now the actual work begins
* replaced all gitdb strings with gitSebastian Thiel2011-05-061-1/+1
|
* Made most primal imports work, but stopped here as there are many more ↵Sebastian Thiel2011-05-051-2/+2
| | | | changes when doing the merge
* Moved rev_parse code into gitdb, this probably broke pretty much here, which ↵Sebastian Thiel2011-04-291-28/+7
| | | | is still to be fixed of course
* git.repo.base: substituted all usages of the active_branch property with ↵Sebastian Thiel2011-01-171-4/+4
| | | | self.head.* in order to more safely get the current commit. active_branch would only work on non-detached heads
* Moved everything into the git subdirectory - some tests still need to be ↵Sebastian Thiel2010-11-251-0/+753
adjusted