diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-19 18:36:33 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-19 18:36:44 +0100 |
commit | 048ffa58468521c043de567f620003457b8b3dbe (patch) | |
tree | 7c33c44a40fb30c0783ba4e96aa1f1f5e3166e67 /git/repo/base.py | |
parent | df95149198744c258ed6856044ac5e79e6b81404 (diff) | |
download | gitpython-048ffa58468521c043de567f620003457b8b3dbe.tar.gz |
Improved installation docs to mention `pip`, not `easy_install`
Fixes #235
[ci skip]
Diffstat (limited to 'git/repo/base.py')
-rw-r--r-- | git/repo/base.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/git/repo/base.py b/git/repo/base.py index 9ddb1ce8..ef12473b 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -869,8 +869,9 @@ class Repo(object): return self def has_separate_working_tree(self): - """:return: True if our git_dir is not at the root of our working_tree_dir, but a .git file with a - platform agnositic symbolic link. Our git_dir will be whereever the .git file points to + """ + :return: True if our git_dir is not at the root of our working_tree_dir, but a .git file with a + platform agnositic symbolic link. Our git_dir will be whereever the .git file points to :note: bare repositories will always return False here """ if self.bare: |