Answers for "merge conflict commands"

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

CONFLICT (content): Merge conflict in

CONFLICT (content): Merge conflict in bash/alx

edit the changes manually 
git add *
git stash
git pull

git merge branh-name
Posted by: Guest on March-01-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language