summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* prepare next release3.0.2Sebastian Thiel2019-08-221-0/+5
|
* Bump version to 3.0.13.0.1Sebastian Thiel2019-08-151-0/+1
|
* Changelog informationSebastian Thiel2019-08-141-0/+6
|
* finalize chagnes.rst for 3.0 release3.0.0Sebastian Thiel2019-08-121-3/+6
|
* Version 3.0 - drop python 2 supportSebastian Thiel2019-08-111-0/+16
|
* Drop python 2 support, again (revert previous revert)Sebastian Thiel2019-08-111-1/+1
| | | | This reverts commit 913d806f02cf50250d230f88b897350581f80f6b.
* Bring back python 2 support2.1.13Sebastian Thiel2019-07-291-0/+6
|
* Revert "Drop python 2.7 support and help with encodings"Sebastian Thiel2019-07-291-1/+1
| | | | This reverts commit dac619e4917b0ad43d836a534633d68a871aecca.
* Build docs locallySantos Gallegos2019-07-202-7/+5
| | | | | | | | Currently `make html` will output pages without styles or different than the online documentation. With this change the local documentation looks the same as the online documentation.
* Drop python 2.7 support and help with encodingsSebastian Thiel2019-07-201-1/+1
| | | | Fixes #312
* Document git.__version__Santos Gallegos2019-07-201-0/+7
| | | | Closes #311
* Update changelog for next releaseSebastian Thiel2019-07-061-0/+11
|
* Update nose linkSantos Gallegos2018-12-221-1/+1
|
* Bump version to 2.1.112.1.11Sebastian Thiel2018-07-151-0/+9
|
* Dedent code blocks in tutorial.Tim Swast2018-07-151-1/+50
| | | | | | | | | 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.
* Bump to 2.1.102.1.10Sebastian Thiel2018-05-191-0/+9
|
* Bump version to 2.1.92.1.9Sebastian Thiel2018-03-241-2/+12
|
* github -> GitHubHugo2018-03-182-6/+6
|
* Drop support for EOL Python 2.6Hugo2018-03-181-9/+1
|
* Bump version to v2.1.82.1.8Sebastian Thiel2017-12-111-1/+10
|
* Update changelog and improve docs on skipped testSebastian Thiel2017-07-011-0/+5
| | | | [skip ci]
* chore(version): 2.1.32.1.3Sebastian Thiel2017-03-081-1/+1
| | | | | | | Just because I messed up the previous one and ... pypi allows to delete files for releases, but doesn't allow to replace them with a similarly named one. WTF? Since when is a name important anyway?
* chore(version): v2.1.22.1.2Sebastian Thiel2017-03-081-0/+7
|
* Fix typoThomas Jackson2017-03-081-1/+1
|
* chore(version): 2.1.12.1.1Sebastian Thiel2016-12-081-0/+7
|
* chore(version-up): v2.1.02.1.0Sebastian Thiel2016-10-221-0/+18
| | | | Vastly improved windows support and a few bugfixes.
* Fix some typosSantiago Castro2016-10-202-15/+15
|
* io: Wrap (probably) allconfig_writers in `with` blocksKostis Anagnostopoulos2016-10-041-60/+64
|
* io, #519: ALL open() --> with open()Kostis Anagnostopoulos2016-10-011-1/+2
| | | + Some cases had restructuring of code.
* doc(platforms): inform more clearly about best-effortSebastian Thiel2016-09-253-27/+7
| | | | | | This has been the case for Windows as well, and is now made official. Certain tests already fail on windows, for example.
* doc(limitations): be very clear about known issuesSebastian Thiel2016-09-111-0/+16
| | | | Fixes #508
* fix(Head): checkout() handles detached headSebastian Thiel2016-09-111-0/+2
| | | | | | | | | It's not optimal, as we can now return one of two types which are only compatible in the most basic ways. However, it is better than before, I presume. Fixes #510
* fix(repo): make it serializable with pickleSebastian Thiel2016-09-111-0/+1
| | | | | | | It's entirely untested if this repo still does the right thing, but I'd think it does. Fixes #504
* fix(tag): resolve `commit` objects deeply.Sebastian Thiel2016-09-111-0/+6
| | | | | | | As TagObjects can point to other TagObjects, we need to keep going in order to resolve the final commit. Fixes #503
* chore(version-up): v2.0.82.0.8Sebastian Thiel2016-08-031-2/+8
|
* fix(diff): use explicit change-type if possibleSebastian Thiel2016-07-231-0/+6
| | | | | | | | | | That way, we do not have to figure the change type out by examining the diff object. It's implemented in a way that should yield more desireable results as we keep the change-type that git is providing us with. Fixes #493
* Update tutorialVincent Driessen2016-07-181-2/+7
| | | This mentions the instructions of what was discussed in #489.
* chore(version-up): v2.0.72.0.7Sebastian Thiel2016-07-171-0/+6
|
* Merge branch 'master' into fix-non-ascii-chars-in-status-linesfix-non-ascii-chars-in-status-linesSebastian Thiel2016-06-201-0/+3
|\
| * Store raw path bytes in Diff instanceskeep-raw-bytes-on-diffsVincent Driessen2016-06-141-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, the following fields on Diff instances were assumed to be passed in as unicode strings: - `a_path` - `b_path` - `rename_from` - `rename_to` However, since Git natively records paths as bytes, these may potentially not have a valid unicode representation. This patch changes the Diff instance to instead take the following equivalent fields that should be raw bytes instead: - `a_rawpath` - `b_rawpath` - `raw_rename_from` - `raw_rename_to` NOTE ON BACKWARD COMPATIBILITY: The original `a_path`, `b_path`, etc. fields are still available as properties (rather than slots). These properties now dynamically decode the raw bytes into a unicode string (performing the potentially destructive operation of replacing invalid unicode chars by "�"'s). This means that all code using Diffs should remain backward compatible. The only exception is when people would manually construct Diff instances by calling the constructor directly, in which case they should now pass in bytes rather than unicode strings. See also the discussion on https://github.com/gitpython-developers/GitPython/pull/467
* | Fix for parsing non-ASCII chars in status linesVincent Driessen2016-06-141-0/+2
|/
* doc(changes): inform about new APISebastian Thiel2016-06-141-2/+3
| | | | Relates to #446
* Fixed 'TypeError: decode() takes no keyword arguments' on Python 2.6Andreas Maier2016-06-011-1/+2
|
* Bump for new versionVincent Driessen2016-05-301-0/+5
|
* Fix regexVincent Driessen2016-05-301-0/+5
| | | | | This catches the case where the matched line contains "(" or ")" characters.
* Update changelogVincent Driessen2016-05-301-0/+3
|
* Fix bug in diff parser outputfix-octal-escaped-path-parser-bugVincent Driessen2016-05-301-0/+2
| | | | | | | | | | | | The diff --patch parser was missing some edge case where Git would encode non-ASCII chars in path names as octals, but these weren't decoded properly. \360\237\222\251.txt Decoded via utf-8, that will return: 💩.txt
* doc(changes): inform about new progress APISebastian Thiel2016-05-291-0/+3
| | | | Related to #450
* chore(compat): another attempt to get travis rightSebastian Thiel2016-05-261-1/+2
|
* chore(changes): put fix to correct patch levelSebastian Thiel2016-05-251-1/+5
|