Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion gitimerge.py
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,10 @@ def automerge(self, commit1, commit2, msg=None):
def manualmerge(self, commit, msg):
"""Initiate a merge of commit into the current HEAD."""

check_call(['git', 'merge', '--no-commit', '-m', msg, commit,])
check_call([
'git', '-c', 'rerere.enabled=false',
'merge', '--no-commit', '-m', msg, commit,
])

def require_clean_work_tree(self, action):
"""Verify that the current tree is clean.
Expand Down