Answers for "how to open a branch and make a merge request"

0

how to open a branch and make a merge request

git checkout "name your branch"
git pull
(add any files)
git add .
git commit -m "message entered here"
git push (an alternative command will come up in which case use that command)
(follow the link to complete the merge request)
Posted by: Guest on December-08-2020

Code answers related to "how to open a branch and make a merge request"

Browse Popular Code Answers by Language