diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-11-18 10:40:16 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-11-18 10:46:39 +0100 |
commit | 82849578e61a7dfb47fc76dcbe18b1e3b6a36951 (patch) | |
tree | db49b89e8956d7ebf5231aea4c23e2664668ab77 /lib/git/objects/commit.py | |
parent | 7a320abc52307b4d4010166bd899ac75024ec9a7 (diff) | |
download | gitpython-82849578e61a7dfb47fc76dcbe18b1e3b6a36951.tar.gz |
ORIG_HEAD handling is now implemented in the ref-class itself, instead of being a special case of the commit method; includes tests
util: Fixed iterable lists, which broke due to an incorrectly implemented __contains__ method
Diffstat (limited to 'lib/git/objects/commit.py')
-rw-r--r-- | lib/git/objects/commit.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/git/objects/commit.py b/lib/git/objects/commit.py index 1aedaabf..a2b6c554 100644 --- a/lib/git/objects/commit.py +++ b/lib/git/objects/commit.py @@ -369,9 +369,6 @@ class Commit(base.Object, Iterable, Diffable, Traversable, Serializable): # as well ... import git.refs try: - cur_commit = repo.head.commit - # Adjust the original head reference - force it - git.refs.SymbolicReference.create(repo, 'ORIG_HEAD', cur_commit, force=True) repo.head.commit = new_commit except ValueError: # head is not yet set to the ref our HEAD points to |