Last active
September 27, 2019 15:20
-
-
Save hervispichardo/4eb5167a2bf18773948897752bd4b5f0 to your computer and use it in GitHub Desktop.
Git secure merge
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git checkout feature_branch | |
git merge -s ours --no-commit master | |
git commit # Add a message regarding the replacement that you just did | |
git checkout master | |
git merge feature_branch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment