aboutsummaryrefslogtreecommitdiff
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:42:54 +0200
commit87c7a6f1b166694b1d789b9d6ff8fb02585f099f (patch)
treeae2a933f0cacf4c095889226633f0eabf1c91de0 /git/refs/symbolic.py
parent87aa78c4d6c47874a68c8e1eb2bb8ae9d35e6253 (diff)
downloadGitPython-87c7a6f1b166694b1d789b9d6ff8fb02585f099f.tar.gz
GitPython-87c7a6f1b166694b1d789b9d6ff8fb02585f099f.zip
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 ec31f30c..2c8faa91 100644
--- a/git/refs/symbolic.py
+++ b/git/refs/symbolic.py
@@ -36,6 +36,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"
re_hexsha_only = re.compile('^[0-9A-Fa-f]{40}$')