Answers for "how to resolve conflicts when merging to another branch"

6

how to handle merge conflicts

git stash        -- > take my project to temp memory
git pull         -- > pull the project from GitHub to working directory
						(my computer)
git stash pop    -- > take my project to my working directory,     
					fix the conflict and merge the project.
git add .
git commit –m “comment”
git push
Posted by: Guest on December-04-2020
0

resolve merge conflict

git fetch origin
git checkout -b 'feature/imoh/issue#83_fingerprintRecognition' 'origin/feature/imoh/issue#83_fingerprintRecognition'
git merge develop
Posted by: Guest on March-24-2022

Code answers related to "how to resolve conflicts when merging to another branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language