aboutsummaryrefslogtreecommitdiff
path: root/lib/git/cmd.py
AgeCommit message (Expand)Author
2010-11-21moved all contents, incl. submodule gitdb, up to the root directorySebastian Thiel
2010-10-27cmd: improved error handling and debug printingSebastian Thiel
2010-06-29Renamed modules utils to util, and errors to exc to be more conforming to the...Sebastian Thiel
2010-06-29Updated and fixed sphinx API docs, which included one quick skim-throughSebastian Thiel
2010-06-25Adjusted all files to (hopefully) deal with the fact that all objects now use...Sebastian Thiel
2010-06-24GitCmdStreamReader: fixed terrible bug which only kicked in if the stream was...Sebastian Thiel
2010-06-04Merge branch 'odb'Sebastian Thiel
2010-06-03commit.create_from_tree now uses pure python implementation, fixed message pa...Sebastian Thiel
2010-06-03git.cmd: using communicate in the main branch of execution, which might not m...Sebastian Thiel
2010-06-03git.cmd: moved hardcoded chunksize when duplicating stream data into easy-to-...Sebastian Thiel
2010-06-02git.cmd: added test for stream section constraint used in git command, found ...Sebastian Thiel
2010-06-02commit: refactored existing code to decode commits from streams - performance...Sebastian Thiel
2010-05-31gitcmd: may now receive extra keyword arguments to be passed directly to the ...Sebastian Thiel
2010-05-27cmd: By default, on linux, the parent file handles will be closed to leave th...Sebastian Thiel
2010-05-12Repo: Added comparison operators and hash operator including testSebastian Thiel
2010-03-04Converted all tabs to 4 space characters each to comply with pep8Sebastian Thiel
2009-12-16Added imports for standard locking file classes into the git moduleSebastian Thiel
2009-12-03repo: renamed directories to more descriptive identifiers and made them safer...Sebastian Thiel
2009-12-03repo: fixed incorrect path handling thta could lead to issues if the reposito...Sebastian Thiel
2009-11-26SymbolicReferences can now be at any path within the repository, there is no ...Sebastian Thiel
2009-11-05fixed test_repo to work on windowsSebastian Thiel
2009-11-05cmd: added clear_cache method now used by test repo decorators to be sure per...Sebastian Thiel
2009-11-05git cmd on windows now runs without the shell, see diff for explanationSebastian Thiel
2009-11-05Fixed windows TASKKILL so it actually does something *silently*Sebastian Thiel
2009-11-04Improved cmd error handling in case an invalid revision is specified for an o...Sebastian Thiel
2009-10-26cmd.wait: AutoKill wrapped process will automatically raise on errors to unif...Sebastian Thiel
2009-10-22git cmd fix: After removing the with_raw_output flag, I actually did the wron...Sebastian Thiel
2009-10-22Stream_data streams data to a given output stream most efficiently with a low...Sebastian Thiel
2009-10-22Git.cmd: removed with_raw_output optionSebastian Thiel
2009-10-22added Object.data_stream property allowing to stream object data directly.Con...Sebastian Thiel
2009-10-21remote: Added fetch, pull, push methods to the interface to make these operat...Sebastian Thiel
2009-10-20Moved specialized methods like dashify, touch and is_git_dir to module to the...Sebastian Thiel
2009-10-15Improved archive function by allowing it to directly write to an output strea...Sebastian Thiel
2009-10-15repo: removed a few methods because of redundancy or because it will be obsol...Sebastian Thiel
2009-10-14persistent command signature changed to also return the hexsha from a possibl...Sebastian Thiel
2009-10-14Implemented git command facility to keep persistent commands for fast object ...Sebastian Thiel
2009-10-14cmd: added option to return the process directly, allowing to read the output...Sebastian Thiel
2009-10-11converted all spaces to tabs ( 4 spaces = 1 tab ) just to allow me and my edi...Sebastian Thiel
2009-10-09finished cleaning usage of regular expressions - they are now precompiledSebastian Thiel
2009-10-08Merge branch 'doc_enhancements' into fixesSebastian Thiel
2009-10-08Added docs for the error moduleSebastian Thiel
2009-10-08improved git.cmd documentationSebastian Thiel
2009-10-08git.git.Git.__init__ takes None as default argument as the execute method han...Sebastian Thiel
2009-01-24Lots of spring cleaning and added in Sphinx documentation.Michael Trier
2008-08-11use shell=True in windows (git.exe needs to be on %PATH%)Florian Apolloner
2008-07-17Removed method_missing since it was only used in one place.Michael Trier
2008-07-16Added license information to all files.Michael Trier
2008-06-25fixed http://groups.google.com/group/git-python/browse_thread/thread/b8f3580a...Florian Apolloner
2008-06-21continued yesterdays work on the execute stuffFlorian Apolloner
2008-06-20made with_exceptions=True default (don't look before you leak ;)) and removed...Florian Apolloner