| Commit message (Expand) | Author | Age | Files | Lines |
* | Merge branch 'odb' | Sebastian Thiel | 2010-06-04 | 1 | -418/+506 |
|\ |
|
| * | commit.create_from_tree now uses pure python implementation, fixed message pa... | Sebastian Thiel | 2010-06-03 | 1 | -6/+1 |
| * | git.cmd: added test for stream section constraint used in git command, found ... | Sebastian Thiel | 2010-06-02 | 1 | -1/+6 |
| * | commit: refactored existing code to decode commits from streams - performance... | Sebastian Thiel | 2010-06-02 | 1 | -405/+496 |
* | | git.cmd: using communicate in the main branch of execution, which might not m... | Sebastian Thiel | 2010-06-03 | 1 | -9/+16 |
* | | git.cmd: moved hardcoded chunksize when duplicating stream data into easy-to-... | Sebastian Thiel | 2010-06-03 | 1 | -3/+9 |
|/ |
|
* | gitcmd: may now receive extra keyword arguments to be passed directly to the ... | Sebastian Thiel | 2010-05-31 | 1 | -11/+9 |
* | cmd: By default, on linux, the parent file handles will be closed to leave th... | Sebastian Thiel | 2010-05-27 | 1 | -0/+1 |
* | Repo: Added comparison operators and hash operator including test | Sebastian Thiel | 2010-05-12 | 1 | -2/+6 |
* | Converted all tabs to 4 space characters each to comply with pep8 | Sebastian Thiel | 2010-03-04 | 1 | -371/+371 |
* | Added imports for standard locking file classes into the git module | Sebastian Thiel | 2009-12-16 | 1 | -0/+3 |
* | repo: renamed directories to more descriptive identifiers and made them safer... | Sebastian Thiel | 2009-12-03 | 1 | -9/+11 |
* | repo: fixed incorrect path handling thta could lead to issues if the reposito... | Sebastian Thiel | 2009-12-03 | 1 | -1/+3 |
* | SymbolicReferences can now be at any path within the repository, there is no ... | Sebastian Thiel | 2009-11-26 | 1 | -1/+1 |
* | fixed test_repo to work on windows | Sebastian Thiel | 2009-11-05 | 1 | -1/+1 |
* | cmd: added clear_cache method now used by test repo decorators to be sure per... | Sebastian Thiel | 2009-11-05 | 1 | -1/+14 |
* | git cmd on windows now runs without the shell, see diff for explanation | Sebastian Thiel | 2009-11-05 | 1 | -2/+7 |
* | Fixed windows TASKKILL so it actually does something *silently* | Sebastian Thiel | 2009-11-05 | 1 | -1/+4 |
* | Improved cmd error handling in case an invalid revision is specified for an o... | Sebastian Thiel | 2009-11-04 | 1 | -2/+3 |
* | cmd.wait: AutoKill wrapped process will automatically raise on errors to unif... | Sebastian Thiel | 2009-10-26 | 1 | -4/+22 |
* | git cmd fix: After removing the with_raw_output flag, I actually did the wron... | Sebastian Thiel | 2009-10-22 | 1 | -2/+2 |
* | Stream_data streams data to a given output stream most efficiently with a low... | Sebastian Thiel | 2009-10-22 | 1 | -1/+0 |
* | Git.cmd: removed with_raw_output option | Sebastian Thiel | 2009-10-22 | 1 | -21/+28 |
* | added Object.data_stream property allowing to stream object data directly.Con... | Sebastian Thiel | 2009-10-22 | 1 | -0/+1 |
* | remote: Added fetch, pull, push methods to the interface to make these operat... | Sebastian Thiel | 2009-10-21 | 1 | -2/+4 |
* | Moved specialized methods like dashify, touch and is_git_dir to module to the... | Sebastian Thiel | 2009-10-20 | 1 | -0/+3 |
* | Improved archive function by allowing it to directly write to an output strea... | Sebastian Thiel | 2009-10-15 | 1 | -13/+23 |
* | repo: removed a few methods because of redundancy or because it will be obsol... | Sebastian Thiel | 2009-10-15 | 1 | -1/+17 |
* | persistent command signature changed to also return the hexsha from a possibl... | Sebastian Thiel | 2009-10-14 | 1 | -6/+6 |
* | Implemented git command facility to keep persistent commands for fast object ... | Sebastian Thiel | 2009-10-14 | 1 | -2/+76 |
* | cmd: added option to return the process directly, allowing to read the output... | Sebastian Thiel | 2009-10-14 | 1 | -1/+45 |
* | converted all spaces to tabs ( 4 spaces = 1 tab ) just to allow me and my edi... | Sebastian Thiel | 2009-10-11 | 1 | -194/+194 |
* | finished cleaning usage of regular expressions - they are now precompiled | Sebastian Thiel | 2009-10-09 | 1 | -1/+0 |
* | Merge branch 'doc_enhancements' into fixes | Sebastian Thiel | 2009-10-08 | 1 | -8/+46 |
|\ |
|
| * | Added docs for the error module | Sebastian Thiel | 2009-10-08 | 1 | -1/+4 |
| * | improved git.cmd documentation | Sebastian Thiel | 2009-10-08 | 1 | -8/+43 |
* | | git.git.Git.__init__ takes None as default argument as the execute method han... | Sebastian Thiel | 2009-10-08 | 1 | -1/+1 |
|/ |
|
* | Lots of spring cleaning and added in Sphinx documentation. | Michael Trier | 2009-01-24 | 1 | -1/+1 |
* | use shell=True in windows (git.exe needs to be on %PATH%) | Florian Apolloner | 2008-08-11 | 1 | -3/+8 |
* | Removed method_missing since it was only used in one place. | Michael Trier | 2008-07-17 | 1 | -3/+7 |
* | Added license information to all files. | Michael Trier | 2008-07-16 | 1 | -0/+6 |
* | fixed http://groups.google.com/group/git-python/browse_thread/thread/b8f3580a... | Florian Apolloner | 2008-06-25 | 1 | -60/+5 |
* | continued yesterdays work on the execute stuff | Florian Apolloner | 2008-06-21 | 1 | -24/+16 |
* | made with_exceptions=True default (don't look before you leak ;)) and removed... | Florian Apolloner | 2008-06-20 | 1 | -33/+24 |
* | cmd: rename with_keep_cwd to keep_cwd | David Aguilar | 2008-06-15 | 1 | -7/+9 |
* | Merge commit 'sverre/master' into david | David Aguilar | 2008-06-15 | 1 | -2/+23 |
|\ |
|
| * | Added a with_keep_cwd option | Sverre Rabbelier | 2008-06-13 | 1 | -1/+13 |
| * | Improved the GIT_PYTHON_TRACE=full output format | Sverre Rabbelier | 2008-06-13 | 1 | -1/+10 |
* | | cmd: better support for bare repositories | David Aguilar | 2008-06-15 | 1 | -2/+5 |
* | | cmd: properly handle cwd for repos with work trees | David Aguilar | 2008-06-12 | 1 | -1/+4 |