Skip to content

Commit

Permalink
Use 'known-merge' for resolving conflicts when updating projects.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Nov 10, 2022
1 parent 2f728c0 commit 6eb12f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jaraco/develop/update-projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def update_project(name):
proc = subprocess.Popen(['git', 'pull', 'gh://jaraco/skeleton', '--no-edit'])
code = proc.wait()
if code:
subprocess.check_call(['git', 'mergetool'])
subprocess.check_call(['git', 'mergetool', '-t', 'known-merge'])
subprocess.check_call(['git', 'commit', '--no-edit'])
subprocess.check_call(['git', 'push'])

Expand Down

0 comments on commit 6eb12f1

Please sign in to comment.