diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-11-04 17:11:19 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-11-04 17:11:19 +0100 |
commit | f1e9df152219e85798d78284beeda88f6baa9ec7 (patch) | |
tree | 857596e929556cd946518a4d1c404eb8e6d8cd87 /lib/git/refs.py | |
parent | 52bb0046c0bf0e50598c513e43b76d593f2cbbff (diff) | |
parent | fc2201e660014c5d91fec8e3c3a3fa5a66dcf33b (diff) | |
download | gitpython-f1e9df152219e85798d78284beeda88f6baa9ec7.tar.gz |
Merge branch 'docs' into improvements
* docs:
Converted tabs to spaces.
added paragraph about the diffing engine and how to switch branches, which once more shows the need for a real checkout for all the people who do not want to implement all the safety facilities themselves
Added Index Object paragraph and wrote the Remote Handling paragraph. Updated repo area
added paragraph about using the git-python command
Worked on the tree object handling and realized an issue with attribute naming on index objects and the way the system handles these
initial work on tutorial.rst
added all new files to reference.rst and corrected the worst mistakes. There are still a few errors left that I cannot fix as it complains about whitespace in the end ... that is exactly what I hate restructured text for, its just a ... anyway.
Diffstat (limited to 'lib/git/refs.py')
-rw-r--r-- | lib/git/refs.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/git/refs.py b/lib/git/refs.py index 352c14f4..1900c6ce 100644 --- a/lib/git/refs.py +++ b/lib/git/refs.py @@ -3,9 +3,8 @@ # # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php -""" -Module containing all ref based objects -""" +""" Module containing all ref based objects """ + import os from objects import Object, Commit from objects.utils import get_object_type_by_name |