Skip to content

Commit

Permalink
no rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
bra-fsn committed Sep 4, 2024
1 parent b67f84d commit e5350b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inspector/repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def push_path(path: str | os.PathLike, msg: str):
changes = repo.untracked_files + repo.index.diff(None)
if len(changes):
origin = repo.remote(name="origin")
origin.pull(rebase=True, strategy_option='theirs')
origin.pull(strategy_option="ours")
repo.index.add(path)
repo.index.commit(msg)
origin.push()
Expand Down

0 comments on commit e5350b9

Please sign in to comment.