Show More
@@ -85,7 +85,7 b' def get_branch(repo, branch, owner, mergeable):' | |||
|
85 | 85 | # Delete the branch first |
|
86 | 86 | call(['git', 'branch', '-D', merged_branch]) |
|
87 | 87 | check_call(['git', 'checkout', '-b', merged_branch]) |
|
88 | check_call(['git', 'pull', '--no-commit', repo, branch]) | |
|
88 | check_call(['git', 'pull', '--no-ff', '--no-commit', repo, branch]) | |
|
89 | 89 | check_call(['git', 'commit', '-m', "merge %s/%s" % (repo, branch)]) |
|
90 | 90 | else: |
|
91 | 91 | # Fetch the branch without merging it. |
General Comments 0
You need to be logged in to leave comments.
Login now