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