summaryrefslogtreecommitdiff
path: root/lib
Commit message (Expand)AuthorAgeFilesLines
...
* replace old reference to Commit.sha with Commit.hexshaRick Copeland2010-09-081-1/+1
* unicode handling in messages and trees was improved. Messages are now written...Sebastian Thiel2010-08-133-1/+20
* BaseIndexEntry: Added to_blob method, refactored functionality sligthlySebastian Thiel2010-07-204-27/+50
* index: Fixed bug which caused incorrect separators in output files of the ret...Sebastian Thiel2010-07-192-6/+13
* util.get_user_id(): Will try a windows environment variable as well, the meth...Sebastian Thiel2010-07-161-1/+1
* Index._iter_expand_paths: fixed tiny error with large impact, there was code ...Sebastian Thiel2010-07-152-2/+1
* Unicode: tree_to_stream can now handle unicode names the way git would do it....Sebastian Thiel2010-07-151-0/+7
* Addiitonal win32 fixes related to, guess it, backslashes in pathsSebastian Thiel2010-07-152-6/+8
* Fixed the missing Repo type documentation thanks to a hint of gasche, fixed a...Sebastian Thiel2010-07-142-2/+4
* Added performance test to compare inst.__class__() vs type(inst)() class. Th...Sebastian Thiel2010-07-141-0/+0
* Fixed python < 2.6 windows specific issue when reading in the index using a m...Sebastian Thiel2010-07-111-1/+7
* Moved test-centric windows specific fix into the class itself to assure this ...Sebastian Thiel2010-07-111-0/+11
* Added python 2.4 support: Repo will now use the original GitCmdObjectDB in py...Sebastian Thiel2010-07-094-5/+11
* setup.py: fixed requirement - its interesting to see that there are two diffe...0.3.0-beta1Sebastian Thiel2010-07-081-0/+0
* Adjusted clone method to allow static classmethod clone ( using clone_from ) ...Sebastian Thiel2010-07-071-18/+29
* Added test for GitCmdObjectDB in order to verify the partial_to_complete_sha_...Sebastian Thiel2010-07-071-3/+6
* Adjusted previous object creators to use the rev_parse method directly. rev_p...Sebastian Thiel2010-07-075-20/+10
* Initially working implementation of short-sha parsing and interpretation, tha...Sebastian Thiel2010-07-074-13/+40
* Made repo.py a package to allow better localization of functions and utilitie...Sebastian Thiel2010-07-065-237/+260
* Implemented main rev-parsing, including long hexshas, tags and refs. Short Sh...Sebastian Thiel2010-07-061-6/+14
* Refs now use object.new_from_sha where possible, preventing git-batch-check t...Sebastian Thiel2010-07-061-2/+2
* RevParse now generally works, but there are still some more specialized tests...Sebastian Thiel2010-07-062-17/+37
* Initial version of the rev-parse routine, which doesn't work too bad, but its...Sebastian Thiel2010-07-065-3/+196
* win32 compatability adjustmentsunknown2010-07-024-8/+13
* Fixed broken 0.2 documentation, it didn't contain the API reference previousl...Sebastian Thiel2010-07-021-0/+0
* Added further information about the required submodules, and how to install t...Sebastian Thiel2010-07-011-0/+0
* Removed blob.data property as there is no real reason for an exception to the...Sebastian Thiel2010-06-291-11/+1
* Renamed modules utils to util, and errors to exc to be more conforming to the...Sebastian Thiel2010-06-2917-26/+26
* Removed repo tests which for some reason left the 'repos' directory around, r...Sebastian Thiel2010-06-291-1/+6
* Updated and fixed sphinx API docs, which included one quick skim-throughSebastian Thiel2010-06-2911-52/+82
* Diff: fixed bug that caused a string to end up as a blob modeSebastian Thiel2010-06-297-13/+16
* All tests adjusted to work with the changed internal sha representationSebastian Thiel2010-06-289-39/+54
* Adjusted all files to (hopefully) deal with the fact that all objects now use...Sebastian Thiel2010-06-2520-3278/+2740
* index.reset is now partly implemented using python, but in fact it resorts to...Sebastian Thiel2010-06-252-20/+34
* IndexFile.add: writing of the index file can now optionally be turned off. Th...Sebastian Thiel2010-06-241-6/+12
* GitCmdStreamReader: fixed terrible bug which only kicked in if the stream was...Sebastian Thiel2010-06-243-6/+19
* aggressive_tree_merge: fixed incorrect handling of one branch, it was just no...Sebastian Thiel2010-06-244-5/+12
* Multiple partly critical bugfixes related to index handlingSebastian Thiel2010-06-243-9/+33
* fixed critical bug in traverse_trees_recursive, implemented IndexFile.new inc...Sebastian Thiel2010-06-233-11/+19
* Added test for aggressive_tree_mergeSebastian Thiel2010-06-233-65/+69
* Implemented simple tree merging and a simple test, more elaborate testing is ...Sebastian Thiel2010-06-231-8/+78
* Initial frame for implementing read_tree using pure python. As git-read-tree ...Sebastian Thiel2010-06-224-8/+165
* index.write_tree: now uses MemoryDB, making tree handling more efficient as I...Sebastian Thiel2010-06-222-3/+7
* Tree-Writing now works after fixing an off-by-one errorSebastian Thiel2010-06-222-12/+13
* index.write_tree: initial version implemented, although its not yet working c...Sebastian Thiel2010-06-2211-187/+266
* index: put serialization methods into new 'fun' module, this makes the calls ...Sebastian Thiel2010-06-212-137/+183
* index.add does not need the git clt anymoreSebastian Thiel2010-06-212-24/+9
* index: Entries are now using flags internally, instead of reducing the flag i...Sebastian Thiel2010-06-214-60/+83
* index.add: now uses gitdb.store functionality instead of git-hash-file. The p...Sebastian Thiel2010-06-212-53/+57
* db: added pure python git databaseSebastian Thiel2010-06-203-771/+775