summaryrefslogtreecommitdiff
path: root/AUTHORS
Commit message (Collapse)AuthorAgeFilesLines
* Method stating which commit is being played during an halted rebaseArthur Milchior2019-08-141-0/+1
| | | | | | This will be useful to me at least. This way, I know that I can tell my script to omit some specific commits. If you accept to merge it, I may also do similar method for merges and cherry pick.
* Fix `AttributeError` when searching a remote by nameCésar Izurieta2019-07-211-0/+1
| | | | | | Running code like `'origin' in git.Repo('path/to/existing/repository').remotes` raises an AttributeError instead of returning a boolean. This commit fixes that behaviour by catching the error when doing an identity match on `IterableList`.
* Merge branch 'master' of https://github.com/sstancu/GitPython into ↵Sebastian Thiel2019-07-201-0/+1
|\ | | | | | | sstancu-master
| * Ensure git remote urls (multiple) are read from the correct git repo configStefan Stancu2019-04-051-0/+1
| |
* | Add support to pass clone options that can be repeated multiple timesSteven Whitman2019-07-061-0/+1
| |
* | Merge branch 'multi-value' of https://github.com/ajdavis/GitPython into ↵Sebastian Thiel2019-07-061-0/+1
|\ \ | |/ |/| | | ajdavis-multi-value
| * Support multiple git config values per optionA. Jesse Jiryu Davis2019-01-201-0/+1
| | | | | | | | Solves #717
* | Added name to authorsDavid Host2019-03-151-0/+1
|/ | | Fixed issue #806
* Respect _common_dir when finding repository config fileLuc Ritchie2018-10-131-0/+1
| | | | | Among other things, remotes are now correctly identified when in a separate worktree.
* Dedent code blocks in tutorial.Tim Swast2018-07-151-0/+1
| | | | | | | | | I found the extra 8 spaces at the start of the examples in the tutorial to be distracting. The Sphinx dedent option removes these extra spaces from the rendered code blocks. I also got a warning about the shell code example not being lexed as Python, so I converted this to an explicit shell code block.
* to keep travis busy - adding myself to AUTHORSYaroslav Halchenko2017-12-011-0/+1
|
* Remove trailing slash on drive pathCharles Bouchard-Légaré2017-11-161-0/+1
|
* Converting path in clone and clone_from to str before any other operation in ↵Mikuláš Poul2017-10-071-0/+1
| | | | case eg pathlib.Path is passed
* updating AUTHORSPiotr Babij2017-09-301-0/+1
|
* Merge branch 'master' into masterSebastian Thiel2017-09-281-0/+1
|\
| * Merge branch 'master' into adding_setup_for_git_executableSebastian Thiel2017-09-281-0/+1
| |\
| * | Modified AUTHORS fileOdegard, Ken2017-07-091-0/+1
| | | | | | | | | | | | Added my name to list.
* | | Merge branch 'master' into masterSebastian Thiel2017-09-281-0/+1
|\ \ \ | | |/ | |/|
| * | util: move expand_path from repo/base and use it in Git class initAlexis Horgix Chotard2017-08-251-0/+1
| |/
* | added myselfAnson Mansfield2017-07-191-0/+1
|/
* Repo: handle worktrees betterPeter Jones2017-07-011-0/+1
| | | | | | | | | | | | | This makes Repo("foo") work when foo/.git is a file of the form created by "git worktree add", i.e. it's a text file that says: gitdir: /home/me/project/.git/worktrees/bar and where /home/me/project/.git/ is the nominal gitdir, but /home/me/project/.git/worktrees/bar has this worktree's HEAD etc and a "gitdir" file that contains the path of foo/.git . Signed-off-by: Peter Jones <pjones@redhat.com>
* Add base class for package exceptions.Konstantin Popov2017-05-291-0/+1
|
* check for GIT_WORK_TREETimothy B. Hartman2017-02-241-0/+1
|
* Add Guyzmo into AUTHORSGuyzmo2016-10-121-0/+1
|
* Allowed remotes to have no refs.Phil Elson2016-08-191-0/+1
|
* Add contributorsVincent Driessen2016-04-241-0/+2
|
* Used this release for a first beta of the 0.2 branch of developmentSebastian Thiel2010-04-071-0/+2
| | | | | TODO: Added info about doc improvements Authors: Added myself as Contributor, and noted the partial rewrite which happend in 0.2
* Lots of spring cleaning and added in Sphinx documentation.Michael Trier2009-01-241-8/+14
|
* Added Paul Sowden to the AUTHORS file and made tutorial fixes. Thanks Paul.Michael Trier2008-12-151-0/+1
|
* Added kai to the AUTHORS file.Michael Trier2008-09-141-0/+1
|
* Added nud to the AUTHORS file.Michael Trier2008-09-141-0/+1
|
* added Jelmer to the AUTHORS and removed an unnecessary underline in tests.Michael Trier2008-07-281-0/+1
|
* renamed git_python to git. Removed pop_key and replaced with dict.pop. Fixed ↵Michael Trier2008-05-301-0/+1
| | | | up tests so they pass except for stderr test. Modified version information retrieval.
* added /me as authorFlorian Apolloner2008-05-201-0/+1
|
* Corrected problem with tree.__len__ getting confused with zero length files. ↵Michael Trier2008-05-171-0/+2
Thanks Alan Briolat.