File tree Expand file tree Collapse file tree 1 file changed +30
-6
lines changed Expand file tree Collapse file tree 1 file changed +30
-6
lines changed Original file line number Diff line number Diff line change @@ -5,17 +5,41 @@ CHANGES
550.1.3
66=====
77
8+ * renamed ``git_python`` to ``git``. Be sure to delete all pyc files before
9+ testing.
10+
811Git
912---
10- * Removed shell escaping completely
11- * Added support for stderr and stdin
12- * Added new
13+ * Removed shell escaping completely.
14+
15+ * Added support for ``stderr``, ``stdin``, and ``with_status``.
16+
17+ * ``git_dir`` is now optional in the constructor for ``git.Git``. Git now
18+ falls back to ``os.getcwd()`` when git_dir is not specified.
19+
20+ * add a ``with_exceptions`` keyword argument to git commands. ``GitCommandError``
21+ is raised when the exit status is non-zero.
22+
23+ * add support for a ``GIT_PYTHON_TRACE`` environment variable.
24+ ``GIT_PYTHON_TRACE`` allows us to debug GitPython's usage of git through
25+ the use of an environment variable.
26+
27+ Tree
28+ ----
29+ * Fixed up problem where ``name`` doesn't exist on root of tree.
30+
31+ Repo
32+ ----
33+ * Corrected problem with creating bare repo. Added ``Repo.create`` alias.
1334
14350.1.2
1536=====
16- Corrected problem with Tree.__div__ not working with zero length files.
17- Removed __len__ override and replaced with size instead. Also made size cache
18- properly. This is a breaking change.
37+
38+ Tree
39+ ----
40+ * Corrected problem with ``Tree.__div__`` not working with zero length files.
41+ Removed ``__len__`` override and replaced with size instead. Also made size
42+ cach properly. This is a breaking change.
1943
20440.1.1
2145=====
You can’t perform that action at this time.
0 commit comments