at: https://github.com/MikhailGolubtsov/git-mv-changes/blob/4c58741a0e5a7cb0223d1de246baf186f4015151/mv-changes#L82 you have: ``` git rebase --autosquash -q -i $START_REV~ || `git rebase --abort && git checkout $BRANCH && exit 1` ``` but you probably want: ``` git rebase --autosquash -q -i $START_REV~ || (git rebase --abort && git checkout $BRANCH) && exit 1 ```
at:
git-mv-changes/mv-changes
Line 82 in 4c58741
you have:
but you probably want: