Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Copy environment for subprocess execution | Darragh Bailey | 2014-11-17 | 1 | -0/+6 |
| | | | | | | | | | | Git utilizes multiple environment variables to control various behaviours. Make sure to set LC_MESSAGES on a copy of the environment instead of discarding any variables that may be set by the user or default shell environment such as EDITOR. Add test to assert that when overriding GIT_EDITOR via os.environ that the modified value will be picked up by and git commands called. | ||||
* | Allow Index.add() on bare repositories | Sebastian Thiel | 2014-11-17 | 1 | -0/+34 |
| | |||||
* | pep8 linting (trailing whitespace) | Antoine Musso | 2014-11-16 | 19 | -155/+155 |
| | | | | W291 trailing whitespace | ||||
* | pep8 linting (double spaces before comment) | Antoine Musso | 2014-11-16 | 3 | -8/+8 |
| | | | | E261 at least two spaces before inline comment | ||||
* | pep8 linting (whitespace before/after) | Antoine Musso | 2014-11-16 | 22 | -160/+160 |
| | | | | | | | | | | | | | E201 whitespace after '(' E202 whitespace before ')' E203 whitespace before ':' E225 missing whitespace around operator E226 missing whitespace around arithmetic operator E227 missing whitespace around bitwise or shift operator E228 missing whitespace around modulo operator E231 missing whitespace after ',' E241 multiple spaces after ',' E251 unexpected spaces around keyword / parameter equals | ||||
* | pep8 linting (blank lines expectations) | Antoine Musso | 2014-11-16 | 24 | -42/+52 |
| | | | | | | E301 expected 1 blank line, found 0 E302 expected 2 blank lines, found 1 E303 too many blank lines (n) | ||||
* | pep8 linting (whitespaces) | Antoine Musso | 2014-11-16 | 25 | -786/+771 |
| | | | | | | | | | | | W191 indentation contains tabs E221 multiple spaces before operator E222 multiple spaces after operator E225 missing whitespace around operator E271 multiple spaces after keyword W292 no newline at end of file W293 blank line contains whitespace W391 blank line at end of file | ||||
* | Merge branch 'sf-master' of https://github.com/johnsca/GitPython into ↵ | Sebastian Thiel | 2014-11-15 | 3 | -4/+9 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | johnsca-sf-master Conflicts: git/cmd.py git/objects/commit.py git/objects/fun.py git/objects/util.py git/remote.py git/repo/base.py git/test/lib/helper.py git/test/test_commit.py git/test/test_fun.py git/util.py | ||||
| * | [#7021] Added serialization and test from upstream and fixed test issues | Cory Johns | 2014-03-03 | 3 | -1/+73 |
| | | |||||
| * | Fix whacky indentation | Tim Van Steenburgh | 2013-04-17 | 1 | -3/+3 |
| | | | | | | | | Signed-off-by: Tim Van Steenburgh <tvansteenburgh@gmail.com> | ||||
| * | Return bytes if object name can't be utf8-decoded | Tim Van Steenburgh | 2013-04-17 | 1 | -0/+5 |
| | | | | | | | | Signed-off-by: Tim Van Steenburgh <tvansteenburgh@gmail.com> | ||||
* | | Merge pull request #189 from mrasskazov/0.3 | Sebastian Thiel | 2014-11-14 | 2 | -1/+71 |
|\ \ | | | | | | | GPG signature support on commit object. | ||||
| * | | GPG signature support on commit object. | Max Rasskazov | 2014-09-08 | 2 | -1/+71 |
| | | | | | | | | | | | | | | | | | | | | | | | | Originals: Pull request "GPG signature support on commit object" #124 by Tatsuki Sugiura. https://github.com/gitpython-developers/GitPython/pull/124 commit 8065d2abdbb18e09560fc061807301b4c834d5a7 commit 62ecd6c66a84144632b045696326af503ee8cd4e | ||||
* | | | Updated README to better represent current state | Sebastian Thiel | 2014-11-14 | 1 | -7/+6 |
| | | | |||||
* | | | Merge pull request #200 from dbaxa/0.3-with-unicode-fixes | Sebastian Thiel | 2014-11-12 | 1 | -11/+20 |
|\ \ \ | |/ / |/| | | 0.3 with unicode fixes | ||||
| * | | Basic test for __unpack_args to verify unicode handling works | Craig Northway | 2014-11-12 | 1 | -11/+20 |
| | | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit 8fa25b1cd5a82679c7b12d546b96c30cafed0559) Signed-off-by: David Black <dblack@atlassian.com> Conflicts: git/test/test_git.py | ||||
* | | | Support multiple refspecs in fetch. | Robert Collins | 2014-07-03 | 1 | -0/+4 |
|/ / | | | | | | | | | | | Git supports fetching many refs at once - support this in GitPython too for more efficient operations when selectively mirroring repositories. | ||||
* | | add git command options | Eric Brunson | 2014-04-25 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | Add __call__ method to Git object to allow passing git command options to the executable requires flag to transform_kwargs add unit tests Change-Id: If1bc01008e66d3fd3811c15b56e58f38c95b9887 | ||||
* | | add git command options | Eric Brunson | 2014-04-25 | 1 | -0/+12 |
| | | | | | | | | | | | | | | | | | | Add __call__ method to Git object to allow passing git command options to the executable requires flag to transform_kwargs add unit test Change-Id: If1bc01008e66d3fd3811c15b56e58f38c95b9887 | ||||
* | | Minor modifications to get tests back to work. | Sebastian Thiel | 2014-02-10 | 3 | -13/+20 |
| | | | | | | | | Two tests are failing in the latest git version, would have to dig into it | ||||
* | | Adjusted required versions of pre-requisites, now the majority of the tests work | Sebastian Thiel | 2014-02-10 | 3 | -4/+4 |
| | | |||||
* | | tabs to 4 spaces - this won't make integrating the patches easier, but it's ↵ | Sebastian Thiel | 2014-02-09 | 21 | -4575/+4575 |
| | | | | | | | | probably a good idea to go a little more pep8 (and fix sins of my youth ;) ) | ||||
* | | fixed testcase | Sebastian Thiel | 2011-07-18 | 1 | -1/+1 |
| | | | | | | | | a test cases was asserting the wrong variable | ||||
* | | new blame test added | Sebastian Thiel | 2011-07-18 | 1 | -0/+9 |
|/ | | | | | A test which makes the actual git-blame test to be sure it really works in the face of a changing git command implementation | ||||
* | Implemented GIT_PYTHON_GIT_EXECUTABLE including test and docs | Sebastian Thiel | 2011-07-05 | 1 | -0/+10 |
| | |||||
* | Fetch info can now deal much better with non-default ref specs, fixes #24, #25 | Sebastian Thiel | 2011-07-04 | 1 | -4/+48 |
| | |||||
* | refs: added constructor flag to allow refs to be instatiated from any path, ↵ | Sebastian Thiel | 2011-07-04 | 1 | -0/+5 |
| | | | | including simple test | ||||
* | Fixes #23 | Sebastian Thiel | 2011-07-04 | 1 | -424/+432 |
| | |||||
* | test_submodule doesn't assume latest version of gitdb anymore | Sebastian Thiel | 2011-06-13 | 1 | -1/+2 |
| | |||||
* | fixed test_repo to deal with new and old versions of the gitdb. windows is ↵ | Sebastian Thiel | 2011-06-13 | 1 | -1/+1 |
| | | | | now ready to ship, regarding the test cases at least | ||||
* | fixed submodule test to work on windows | Sebastian Thiel | 2011-06-13 | 1 | -2/+3 |
| | |||||
* | test_submodule: Will now load everything into memory if smmap is present, to ↵ | Sebastian Thiel | 2011-06-13 | 1 | -0/+14 |
| | | | | help the submodule test to work even on windows | ||||
* | Fixed submodule tests to go with either the old or the new version of gitdb | Sebastian Thiel | 2011-06-10 | 1 | -5/+6 |
| | |||||
* | Fixed critical issue that would cause a string to be passed to methods that ↵ | Sebastian Thiel | 2011-06-08 | 1 | -3/+1 |
| | | | | expect a stream | ||||
* | relaxed implementation when comparing symbolic references against other ↵ | Sebastian Thiel | 2011-06-08 | 1 | -0/+9 |
| | | | | items which don't have a path. Fixed test_refs to work in all cases - it was previously dependent on the order of items returned by the file system | ||||
* | util: Added test for iterable list, and implemented __contains__ and __del__ ↵ | Sebastian Thiel | 2011-06-08 | 1 | -1/+58 |
| | | | | functionality | ||||
* | Improved debug assertion to provide proper path on which to run a git daemon | Sebastian Thiel | 2011-06-07 | 1 | -2/+4 |
| | |||||
* | Added version_info property to git command. Its cached and efficient, ↵ | Sebastian Thiel | 2011-06-07 | 1 | -66/+82 |
| | | | | including test | ||||
* | Fixed submodule test. Just a tiny thing | Sebastian Thiel | 2011-06-07 | 1 | -0/+3 |
| | |||||
* | Greatly improved robustness of config parser - it can now take pretty much ↵ | Sebastian Thiel | 2011-06-07 | 2 | -7/+15 |
| | | | | everything. Includes an updated config file which includes all the new additions | ||||
* | added test & fix for mangled tagger names | Orestis Markou | 2011-05-01 | 1 | -0/+10 |
| | |||||
* | Fixed incorrect handling of rev_parse if it was fed with branches that ↵ | Sebastian Thiel | 2011-02-23 | 1 | -1/+6 |
| | | | | looked like hexshas. Thanks to Ning (frostyplanet) who pointed this issue out | ||||
* | Submodule tests are functional once again. | Sebastian Thiel | 2010-12-01 | 1 | -1/+1 |
| | | | | remote: Fixed bug that was caused by the unchecked deletion of an uncached attribute which did not necessarily exist | ||||
* | Fixed import of gitdb, keeping changed gitdb commit so that the submodule ↵ | Sebastian Thiel | 2010-12-01 | 1 | -2/+2 |
| | | | | | | tests may work. Switched gitdb submodule to new github url | ||||
* | Fixed all testcases | Sebastian Thiel | 2010-11-25 | 2 | -4/+5 |
| | |||||
* | Moved everything into the git subdirectory - some tests still need to be ↵ | Sebastian Thiel | 2010-11-25 | 67 | -0/+8668 |
adjusted |