Skip to content

Commit

Permalink
docs: update default conflict mode
Browse files Browse the repository at this point in the history
  • Loading branch information
sisp committed Jun 16, 2023
1 parent 1b351bc commit 56f3652
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions copier/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ class Worker:
See [quiet][].
conflict:
One of "rej" (default), "inline" (still experimental).
One of "inline" (default), "rej".
context_lines:
Lines of context to consider when solving conflicts in updates.
Expand Down Expand Up @@ -881,7 +881,6 @@ def _apply_update(self):
):
apply_cmd = apply_cmd["--exclude", skip_pattern]
(apply_cmd << diff)(retcode=None)
# TODO Test more, remove from experimental, make default
if self.conflict == "inline":
status = git("status", "--porcelain").strip().splitlines()
for line in status:
Expand Down

0 comments on commit 56f3652

Please sign in to comment.