summaryrefslogtreecommitdiff
path: root/gbp/git.py
diff options
context:
space:
mode:
Diffstat (limited to 'gbp/git.py')
-rw-r--r--gbp/git.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gbp/git.py b/gbp/git.py
index 74ce711..995d652 100644
--- a/gbp/git.py
+++ b/gbp/git.py
@@ -190,12 +190,12 @@ class GitRepository(object):
@property
def path(self):
- """The path to the repository"""
+ """The absolute path to the repository"""
return self._path
@property
- def base_dir(self):
- """Get the base of the repository"""
+ def git_dir(self):
+ """The absolute path to git's metadata"""
return os.path.join(self.path, self._git_dir)
@property