diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-11-26 11:35:36 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-11-26 11:35:36 +0100 |
commit | 2fbb7027ec88e2e4fe7754f22a27afe36813224b (patch) | |
tree | cf6dc327fcac64e724fe9db62278eaa8fb3fa19d /git/refs | |
parent | f8ce24a835cae8c623e2936bec2618a8855c605b (diff) | |
download | gitpython-2fbb7027ec88e2e4fe7754f22a27afe36813224b.tar.gz |
Commit.create_from_tree used a now renamed keyword parameter - no test-case ever runs this code, which is still an issue
Diffstat (limited to 'git/refs')
-rw-r--r-- | git/refs/symbolic.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/git/refs/symbolic.py b/git/refs/symbolic.py index 9937cf0c..aec68750 100644 --- a/git/refs/symbolic.py +++ b/git/refs/symbolic.py @@ -478,7 +478,8 @@ class SymbolicReference(object): created at, i.e. "NEW_HEAD" or "symrefs/my_new_symref" :param reference: - The reference to which the new symbolic reference should point to + The reference to which the new symbolic reference should point to. + If it is a commit'ish, the symbolic ref will be detached. :param force: if True, force creation even if a symbolic reference with that name already exists. |