summaryrefslogtreecommitdiff
path: root/git/refs/symbolic.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2011-07-04 23:12:25 +0200
committerSebastian Thiel <byronimo@gmail.com>2011-07-04 23:12:25 +0200
commita92ab8028c7780db728d6aad40ea1f511945fc8e (patch)
treeb5727ac49ff7a8ac2a9560cf85de60d60ad10e8f /git/refs/symbolic.py
parentc5558400e86a96936795e68bb6aa95c4c0bb0719 (diff)
downloadgitpython-a92ab8028c7780db728d6aad40ea1f511945fc8e.tar.gz
Basic remote functionality moved to Reference type, as it can in fact be useful for tags as well, which might end up somewhere in the refs/remotes space. Its not likely that it will ever be used on a pure Reference instance though, but it is the smallest common base
Diffstat (limited to 'git/refs/symbolic.py')
-rw-r--r--git/refs/symbolic.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/git/refs/symbolic.py b/git/refs/symbolic.py
index 65327a2f..8556a65e 100644
--- a/git/refs/symbolic.py
+++ b/git/refs/symbolic.py
@@ -33,6 +33,7 @@ class SymbolicReference(object):
_resolve_ref_on_create = False
_points_to_commits_only = True
_common_path_default = ""
+ _remote_common_path_default = "refs/remotes"
_id_attribute_ = "name"
def __init__(self, repo, path):