summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
| * | Stream_data streams data to a given output stream most efficiently with a low...Sebastian Thiel2009-10-223-3/+23
| * | Git.cmd: removed with_raw_output optionSebastian Thiel2009-10-224-35/+40
| * | added Object.data_stream property allowing to stream object data directly.Con...Sebastian Thiel2009-10-225-0/+48
| * | remote: Added fetch, pull, push methods to the interface to make these operat...Sebastian Thiel2009-10-215-5/+82
| * | remote.refs now returns an IterableList allowing easier access to the remotes...Sebastian Thiel2009-10-211-2/+2
| * | diff: added test to be sure index-vs-working copy diffs are solved properlySebastian Thiel2009-10-211-0/+3
| * | repo.is_dirty: fixed incorrect check of a dirty working tree, previously it w...Sebastian Thiel2009-10-212-1/+10
| * | touch method improved to open for appending which would not clear the file an...Sebastian Thiel2009-10-211-1/+1
| |/
| * repo.alternates test cheked for correctness and bugfixed - totally mocked tes...Sebastian Thiel2009-10-203-16/+24
| * Added slots to Repo type to be sure we do not accidentally set values on it, ...Sebastian Thiel2009-10-202-0/+8
| * Fixed bare repository handling - bare is now a property to prevent writing itSebastian Thiel2009-10-206-19/+50
| * Moved specialized methods like dashify, touch and is_git_dir to module to the...Sebastian Thiel2009-10-206-32/+27
| * Improved is_dirty including testSebastian Thiel2009-10-204-24/+32
| * Implemneted IterableLists for refs, commits and remote objects including simp...Sebastian Thiel2009-10-1911-10/+56
| * Added TODO file to keep track of tasks and in case someone wants to help here...Sebastian Thiel2009-10-191-0/+57
| * commit.count: is an instance method nowSebastian Thiel2009-10-197-65/+103
| * repo.remote method addedSebastian Thiel2009-10-193-0/+28
| * Merge branch 'remotes' into improvementsSebastian Thiel2009-10-197-31/+446
| |\
| | * remote: added tests for creation and removal, finishing the remote interfaceSebastian Thiel2009-10-193-3/+22
| | * remote: base tests succeed nowSebastian Thiel2009-10-191-1/+6
| | * config: fixed serious issues that would cause it to see initial tabs as conti...Sebastian Thiel2009-10-192-0/+75
| | * Added configuration access including tests to remoteSebastian Thiel2009-10-194-22/+83
| | * Added remote module and test cases - about to implement remote option handlingSebastian Thiel2009-10-195-5/+265
| | * added initial frame for remote handling- remotes are somewhat related to eith...Sebastian Thiel2009-10-192-28/+23
| |/
| * Merge branch 'config' into improvementsSebastian Thiel2009-10-198-4/+1936
| |\
| | * added additional testing for the configuration, concurrent access and config ...Sebastian Thiel2009-10-193-10/+48
| | * implemented config class as far as necessary, one check is still failingSebastian Thiel2009-10-194-21/+1710
| | * Added frame for configuration reader involving a meta class, decorators and t...Sebastian Thiel2009-10-186-4/+209
| |/
| * Improved tagobject message handling by not assuming an empty fourth line anymoreSebastian Thiel2009-10-181-2/+7
| * diff method now checks for git-diff errrs that can easily occour if the repos...Sebastian Thiel2009-10-182-5/+22
| * Merge branch 'diffing' into improvementsSebastian Thiel2009-10-1813-309/+326
| |\
| | * DiffIndex implemented including testSebastian Thiel2009-10-183-12/+79
| | * diff: implemented raw diff parsing which appears to be able to handle possibl...Sebastian Thiel2009-10-182-11/+56
| | * resolved cyclic inclusion issue by moving the Diffable interface into the dif...Sebastian Thiel2009-10-185-78/+76
| | * repo: fixed untracked files function which used git-commit before, it can ope...Sebastian Thiel2009-10-181-1/+1
| | * implemented diff tests, but will have to move the diff module as it needs to ...Sebastian Thiel2009-10-182-2/+35
| | * Removed a few diff-related test cases that fail now as the respective method ...Sebastian Thiel2009-10-175-195/+38
| | * added Diffable interface to objects.base, its used by Commit and Tree objects.Sebastian Thiel2009-10-165-62/+95
| | * Fixed object bug that would cause object ids not to be resolved to sha's as t...Sebastian Thiel2009-10-166-41/+39
| |/
| * repo.untracked_files added including testSebastian Thiel2009-10-163-0/+57
* | Merging latest improvements including a revamped Repo interface before more c...Sebastian Thiel2009-10-1614-503/+503
|\ \ | |/
| * Merge branch 'repo_interface' into improvementsSebastian Thiel2009-10-1511-469/+463
| |\
| | * Improved archive function by allowing it to directly write to an output strea...Sebastian Thiel2009-10-154-62/+58
| | * repo: made init and clone methods less specific, previously they wanted to do...Sebastian Thiel2009-10-153-30/+33
| | * repo.commit_delta_base: removedSebastian Thiel2009-10-153-89/+82
| | * Object can now create objects of the proper type in case one attempts to crea...Sebastian Thiel2009-10-155-15/+19
| | * repo: removed commits_between but added a note about how this can be achieved...Sebastian Thiel2009-10-152-219/+208
| | * Added Commit.iter_parents to iterate all parentsSebastian Thiel2009-10-158-84/+109
| | * repo: removed a few methods because of redundancy or because it will be obsol...Sebastian Thiel2009-10-156-75/+59
| |/
| * All times are not stored as time_struct, but as simple int to consume less me...Sebastian Thiel2009-10-159-42/+48