| Commit message (Expand) | Author | Age | Files | Lines |
* | ORIG_HEAD handling is now implemented in the ref-class itself, instead of bei... | Sebastian Thiel | 2010-11-18 | 1 | -3/+0 |
* | commit: when creating a new commit and advancing the head, it will now write ... | Sebastian Thiel | 2010-11-18 | 1 | -0/+6 |
* | Objects: Constructor now manually checks and sets the input arguments to the ... | Sebastian Thiel | 2010-11-15 | 1 | -3/+22 |
* | Fixed bug that would cause the author's email to be a generic default one, in... | Sebastian Thiel | 2010-10-27 | 1 | -2/+2 |
* | Added unicode handling for author names. They will now be properly encoded in... | Sebastian Thiel | 2010-10-15 | 1 | -2/+14 |
* | unicode handling in messages and trees was improved. Messages are now written... | Sebastian Thiel | 2010-08-13 | 1 | -1/+13 |
* | Renamed modules utils to util, and errors to exc to be more conforming to the... | Sebastian Thiel | 2010-06-29 | 1 | -2/+2 |
* | Updated and fixed sphinx API docs, which included one quick skim-through | Sebastian Thiel | 2010-06-29 | 1 | -1/+1 |
* | Diff: fixed bug that caused a string to end up as a blob mode | Sebastian Thiel | 2010-06-29 | 1 | -0/+2 |
* | All tests adjusted to work with the changed internal sha representation | Sebastian Thiel | 2010-06-28 | 1 | -9/+10 |
* | Adjusted all files to (hopefully) deal with the fact that all objects now use... | Sebastian Thiel | 2010-06-25 | 1 | -103/+84 |
* | Moved small types that had their own module into the utils module | Sebastian Thiel | 2010-06-14 | 1 | -6/+8 |
* | tree: added TreeModifier, allowing to adjust existing trees safely and or fas... | Sebastian Thiel | 2010-06-14 | 1 | -1/+1 |
* | Removed odb from project, it is now used as a submodule named gitdb, which wa... | Sebastian Thiel | 2010-06-12 | 1 | -1/+1 |
* | Fixed implementation after design change to deal with it - all tests run, but... | Sebastian Thiel | 2010-06-04 | 1 | -1/+3 |
* | initial version of new odb design to facilitate a channel based multi-threadi... | Sebastian Thiel | 2010-06-04 | 1 | -1/+1 |
* | commit.create_from_tree now uses pure python implementation, fixed message pa... | Sebastian Thiel | 2010-06-03 | 1 | -13/+29 |
* | commit: redesigned revlist and commit parsing, commits are always retrieved f... | Sebastian Thiel | 2010-06-02 | 1 | -58/+40 |
* | commit: refactored existing code to decode commits from streams - performance... | Sebastian Thiel | 2010-06-02 | 1 | -65/+74 |
* | commit: initial version of commit_from_tree which could create commit objects... | Sebastian Thiel | 2010-06-02 | 1 | -362/+415 |
* | IndexFile.add: Fixed incorrect path handling if path rewriting was desired an... | Sebastian Thiel | 2010-05-11 | 1 | -2/+2 |
* | Add support for time zone information in tags and commits. | Rick Copeland | 2010-04-27 | 1 | -8/+20 |
* | Converted all tabs to 4 space characters each to comply with pep8 | Sebastian Thiel | 2010-03-04 | 1 | -349/+349 |
* | Commit.iter_items: Will not restrict comits to the ones containing changes to... | Sebastian Thiel | 2010-02-28 | 1 | -1/+6 |
* | Commit.create: now handles empty repositories correctly | Sebastian Thiel | 2010-02-13 | 1 | -2/+15 |
* | commit.create_from_tree: head will not be advanced anymore as it feels non-na... | Sebastian Thiel | 2009-12-01 | 1 | -1/+1 |
* | objects.utils: Added Traversable base and implemented it for commits includin... | Sebastian Thiel | 2009-11-26 | 1 | -1/+5 |
* | commit: added create_from_tree method to untie commit creation from actually ... | Sebastian Thiel | 2009-11-24 | 1 | -0/+65 |
* | Fixed commit.count method which now handles the paths case properly. It appea... | Sebastian Thiel | 2009-11-06 | 1 | -1/+7 |
* | object: renamed id attribute to sha as it in fact is always being rewritten a... | Sebastian Thiel | 2009-11-03 | 1 | -13/+13 |
* | Merge branch 'index' into improvements | Sebastian Thiel | 2009-10-26 | 1 | -15/+25 |
|\ |
|
| * | actor: added __eq__, __ne__ and __hash__ methods including simple test | Sebastian Thiel | 2009-10-24 | 1 | -15/+25 |
* | | commit.name_rev property added for convenience | Sebastian Thiel | 2009-10-23 | 1 | -0/+9 |
|/ |
|
* | Implemneted IterableLists for refs, commits and remote objects including simp... | Sebastian Thiel | 2009-10-19 | 1 | -0/+1 |
* | commit.count: is an instance method now | Sebastian Thiel | 2009-10-19 | 1 | -10/+3 |
* | resolved cyclic inclusion issue by moving the Diffable interface into the dif... | Sebastian Thiel | 2009-10-18 | 1 | -1/+1 |
* | Removed a few diff-related test cases that fail now as the respective method ... | Sebastian Thiel | 2009-10-17 | 1 | -0/+1 |
* | added Diffable interface to objects.base, its used by Commit and Tree objects. | Sebastian Thiel | 2009-10-16 | 1 | -55/+1 |
* | repo.commit_delta_base: removed | Sebastian Thiel | 2009-10-15 | 1 | -75/+78 |
* | Added Commit.iter_parents to iterate all parents | Sebastian Thiel | 2009-10-15 | 1 | -10/+32 |
* | repo: removed a few methods because of redundancy or because it will be obsol... | Sebastian Thiel | 2009-10-15 | 1 | -10/+12 |
* | All times are not stored as time_struct, but as simple int to consume less me... | Sebastian Thiel | 2009-10-15 | 1 | -22/+9 |
* | test_blob: removed many redundant tests that would fail now as the mock canno... | Sebastian Thiel | 2009-10-14 | 1 | -4/+10 |
* | test: Added time-consuming test which could also be a benchmark in fact - cur... | Sebastian Thiel | 2009-10-14 | 1 | -2/+2 |
* | cmd: added option to return the process directly, allowing to read the output... | Sebastian Thiel | 2009-10-14 | 1 | -6/+8 |
* | added Iterable interface to Ref type | Sebastian Thiel | 2009-10-13 | 1 | -1/+1 |
* | renamed find_all to list_all, changed commit to use iterable interface in pre... | Sebastian Thiel | 2009-10-13 | 1 | -32/+39 |
* | refs now take repo as first argument and derive from LazyMixin to allow them ... | Sebastian Thiel | 2009-10-12 | 1 | -1/+1 |
* | renamed from_string and list_from_string to _from_string and _list_from_strin... | Sebastian Thiel | 2009-10-12 | 1 | -6/+6 |
* | Reorganized package structure and cleaned up imports | Sebastian Thiel | 2009-10-12 | 1 | -0/+284 |