Does git merge --no-commit prevent any changes? -
if i'm unsure git merge, , use git merge --no-commit, prevent actual changes occurring in repo?
no, you’d need still git merge --abort, otherwise you’ve got uncommitted merge sitting there waiting manual commits. still safety measure though if you’re unsure things.
Comments
Post a Comment