diff options
-rw-r--r-- | doc/source/intro.rst | 2 | ||||
-rw-r--r-- | git/repo/base.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/intro.rst b/doc/source/intro.rst index 520cf159..8dac2804 100644 --- a/doc/source/intro.rst +++ b/doc/source/intro.rst @@ -47,7 +47,7 @@ here: * `setuptools`_ * `install setuptools <http://peak.telecommunity.com/DevCenter/EasyInstall#installation-instructions>`_ -* `pypi <http://pypi.python.org/pypi/SQLAlchemy>`_ +* `pypi <https://pypi.python.org/pypi/GitPython>`_ .. _setuptools: http://peak.telecommunity.com/DevCenter/setuptools diff --git a/git/repo/base.py b/git/repo/base.py index 8191b305..71492fe8 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -56,13 +56,13 @@ class Repo(object): The following attributes are worth using: - 'working_dir' is the working directory of the git command, wich is the working tree + 'working_dir' is the working directory of the git command, which is the working tree directory if available or the .git directory in case of bare repositories 'working_tree_dir' is the working tree directory, but will raise AssertionError if we are a bare repository. - 'git_dir' is the .git repository directoy, which is always set.""" + 'git_dir' is the .git repository directory, which is always set.""" DAEMON_EXPORT_FILE = 'git-daemon-export-ok' __slots__ = ( "working_dir", "_working_tree_dir", "git_dir", "_bare", "git", "odb" ) |