Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit0cfe75d

Browse files
committed
Updated information files
1 parentf24736a commit0cfe75d

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

‎CHANGES‎

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
11
Please see the online documentation for the latest changelog:
2-
http://packages.python.org/GitPython/0.3/changes.html
3-
4-
To see the changes of this very version, have a look at the file:
5-
doc/source/changes.rst
2+
http://packages.python.org/GitPython/

‎README‎

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
GitPython
33
==========
44

5-
GitPython is a python library used to interact withGit repositories.
5+
GitPython is a python library used to interact withgit repositories, high-level like git-porcelain, or low-level like git-plumbing.
66

7-
GitPython is a port of the grit library in Ruby created by
8-
Tom Preston-Werner and Chris Wanstrath.
7+
It provides abstractions of git objects for easy access of repository data, and additionally allows you to access the git repository more directly using either a pure python implementation, or the faster, but more resource intensive git command implementation.
98

9+
The object database implementation is optimized for handling large quantities of objects and large datasets, which is achieved by using low-level structures and data streaming.
1010

1111
REQUIREMENTS
1212
============
1313

14-
* Git ( tested with 1.5.3.7 )
14+
* Git ( tested with 1.7.3.2 )
1515
* Python Nose - used for running the tests
1616
* Mock by Michael Foord used for tests. Requires 0.5
1717

@@ -32,17 +32,21 @@ A distribution package can be obtained for manual installation at:
3232
SOURCE
3333
======
3434

35-
GitPython's git repo is available onGitorious andGitHub, which can be browsed at:
35+
GitPython's git repo is available on GitHub, which can be browsed at:
3636

37-
http://gitorious.org/projects/git-python/
3837
http://github.com/Byron/GitPython
3938

4039
and cloned using:
4140

42-
git clone git://gitorious.org/git-python/mainline.git git-python
4341
git clone git://github.com/Byron/GitPython.git git-python
4442

4543

44+
DOCUMENTATION
45+
=============
46+
The html-compiled documentation can be found at the following URL:
47+
48+
http://packages.python.org/GitPython/
49+
4650
MAILING LIST
4751
============
4852
http://groups.google.com/group/git-python

‎setup.py‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ def run(self):
2929
classsdist(_sdist):
3030
defmake_release_tree (self,base_dir,files):
3131
_sdist.make_release_tree(self,base_dir,files)
32-
orig='__init__.py'
33-
assertpath.exists(orig)
32+
orig=path.join('git','__init__.py')
33+
assertpath.exists(orig),orig
3434
dest=path.join(base_dir,orig)
3535
ifhasattr(os,'link')andpath.exists(dest):
3636
os.unlink(dest)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2026 Movatter.jp