-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix #323: Always accept local changes to resolve merge conflicts #325
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 1 out of 1 changed files in this pull request and generated no comments.
Co-authored-by: mpage <[email protected]>
git stash | ||
git cherry-pick -n -m1 -Xtheirs stash |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we also need to pull here and below?
git stash | |
git cherry-pick -n -m1 -Xtheirs stash | |
git stash | |
git pull -s recursive --rebase | |
git cherry-pick -n -m1 -Xtheirs stash |
git stash | ||
git cherry-pick -n -m1 -Xtheirs stash |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
git stash | |
git cherry-pick -n -m1 -Xtheirs stash | |
git stash | |
git pull -s recursive --rebase | |
git cherry-pick -n -m1 -Xtheirs stash |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 1 out of 1 changed files in this pull request and generated 2 comments.
Comments suppressed due to low confidence (1)
bench_runner/templates/_benchmark.src.yml:335
- The use of 'git cherry-pick -n -m1 -Xtheirs stash' is unusual and may not work as intended. Consider using 'git stash pop' or 'git stash apply' instead.
git cherry-pick -n -m1 -Xtheirs stash
# https://stackoverflow.com/questions/43770520/how-to-specify-default-merge-strategy-on-git-stash-pop | ||
git stash | ||
git pull -s recursive --rebase | ||
git cherry-pick -n -m1 -Xtheirs stash |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The use of 'git cherry-pick -n -m1 -Xtheirs stash' is unusual and may not work as intended. Consider using 'git stash pop' or 'git stash apply' instead.
git cherry-pick -n -m1 -Xtheirs stash | |
git stash pop |
Copilot is powered by AI, so mistakes are possible. Review output carefully before use.
# https://stackoverflow.com/questions/43770520/how-to-specify-default-merge-strategy-on-git-stash-pop | ||
git stash | ||
git pull -s recursive --rebase | ||
git cherry-pick -n -m1 -Xtheirs stash |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The use of 'git cherry-pick -n -m1 -Xtheirs stash' is unusual and may not work as intended. Consider using 'git stash pop' or 'git stash apply' instead.
git cherry-pick -n -m1 -Xtheirs stash | |
git stash pop |
Copilot is powered by AI, so mistakes are possible. Review output carefully before use.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Cc: @mpage