Skip to content

Commit 6fbb693

Browse files
committed
Merge branch 'odb'
Conflicts: lib/git/cmd.py
2 parents 25dca42 + e746f96 commit 6fbb693

29 files changed

+3676
-1863
lines changed

CHANGES

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
=======
22
CHANGES
33
=======
4-
4+
5+
0.2 Beta 2
6+
===========
7+
* Commit objects now carry the 'encoding' information of their message. It wasn't parsed previously, and defaults to UTF-8
8+
* Commit.create_from_tree now uses a pure-python implementation, mimicing git-commit-tree
9+
510
0.2
611
=====
712
General

lib/git/__init__.py

+3
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,8 @@
2222
from git.index import *
2323
from git.utils import LockFile, BlockingLockFile
2424

25+
# odb is NOT imported intentionally - if you really want it, you should get it
26+
# yourself as its part of the core
27+
2528
__all__ = [ name for name, obj in locals().items()
2629
if not (name.startswith('_') or inspect.ismodule(obj)) ]

0 commit comments

Comments
 (0)