aboutsummaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2019-11-14bump version3.0.5Sebastian Thiel
2019-10-22Update changelog; improve README to prevent release mistakes in future.3.0.4Sebastian Thiel
2019-10-02Prepare v3.0.33.0.3Sebastian Thiel
2019-08-22prepare next release3.0.2Sebastian Thiel
2019-08-15Bump version to 3.0.13.0.1Sebastian Thiel
2019-08-14Changelog informationSebastian Thiel
2019-08-12finalize chagnes.rst for 3.0 release3.0.0Sebastian Thiel
2019-08-11Version 3.0 - drop python 2 supportSebastian Thiel
2019-08-11Drop python 2 support, again (revert previous revert)Sebastian Thiel
This reverts commit 913d806f02cf50250d230f88b897350581f80f6b.
2019-07-29Bring back python 2 support2.1.13Sebastian Thiel
2019-07-29Revert "Drop python 2.7 support and help with encodings"Sebastian Thiel
This reverts commit dac619e4917b0ad43d836a534633d68a871aecca.
2019-07-20Build docs locallySantos Gallegos
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.
2019-07-20Drop python 2.7 support and help with encodingsSebastian Thiel
Fixes #312
2019-07-20Document git.__version__Santos Gallegos
Closes #311
2019-07-06Update changelog for next releaseSebastian Thiel
2018-12-22Update nose linkSantos Gallegos
2018-07-15Bump version to 2.1.112.1.11Sebastian Thiel
2018-07-15Dedent code blocks in tutorial.Tim Swast
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.
2018-05-19Bump to 2.1.102.1.10Sebastian Thiel
2018-03-24Bump version to 2.1.92.1.9Sebastian Thiel
2018-03-18github -> GitHubHugo
2018-03-18Drop support for EOL Python 2.6Hugo
2017-12-11Bump version to v2.1.82.1.8Sebastian Thiel
2017-07-01Update changelog and improve docs on skipped testSebastian Thiel
[skip ci]
2017-03-08chore(version): 2.1.32.1.3Sebastian Thiel
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?
2017-03-08chore(version): v2.1.22.1.2Sebastian Thiel
2017-03-08Fix typoThomas Jackson
2016-12-08chore(version): 2.1.12.1.1Sebastian Thiel
2016-10-22chore(version-up): v2.1.02.1.0Sebastian Thiel
Vastly improved windows support and a few bugfixes.
2016-10-20Fix some typosSantiago Castro
2016-10-04io: Wrap (probably) allconfig_writers in `with` blocksKostis Anagnostopoulos
2016-10-01io, #519: ALL open() --> with open()Kostis Anagnostopoulos
+ Some cases had restructuring of code.
2016-09-25doc(platforms): inform more clearly about best-effortSebastian Thiel
This has been the case for Windows as well, and is now made official. Certain tests already fail on windows, for example.
2016-09-11doc(limitations): be very clear about known issuesSebastian Thiel
Fixes #508
2016-09-11fix(Head): checkout() handles detached headSebastian Thiel
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
2016-09-11fix(repo): make it serializable with pickleSebastian Thiel
It's entirely untested if this repo still does the right thing, but I'd think it does. Fixes #504
2016-09-11fix(tag): resolve `commit` objects deeply.Sebastian Thiel
As TagObjects can point to other TagObjects, we need to keep going in order to resolve the final commit. Fixes #503
2016-08-03chore(version-up): v2.0.82.0.8Sebastian Thiel
2016-07-23fix(diff): use explicit change-type if possibleSebastian Thiel
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
2016-07-18Update tutorialVincent Driessen
This mentions the instructions of what was discussed in #489.
2016-07-17chore(version-up): v2.0.72.0.7Sebastian Thiel
2016-06-20Merge branch 'master' into fix-non-ascii-chars-in-status-linesfix-non-ascii-chars-in-status-linesSebastian Thiel
2016-06-14Store raw path bytes in Diff instancesVincent Driessen
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
2016-06-14Fix for parsing non-ASCII chars in status linesVincent Driessen
2016-06-14doc(changes): inform about new APISebastian Thiel
Relates to #446
2016-06-01Fixed 'TypeError: decode() takes no keyword arguments' on Python 2.6Andreas Maier
2016-05-30Bump for new versionVincent Driessen
2016-05-30Fix regexVincent Driessen
This catches the case where the matched line contains "(" or ")" characters.
2016-05-30Update changelogVincent Driessen
2016-05-30Fix bug in diff parser outputVincent Driessen
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