How to merge github local branch to master branch in vs code
Github tutorial link:
Video Link:
Step 1: Select the branch you want to merge to.
git checkout master
Step 2: Enter the merge git command
Make sure you have
latest copy of master branch
git checkout master
git pull
After pulling latest fire the below command
git
merge bran1
It will merge the changes locally to master
branch.
Step 3: push the code to server
git push -u origin
master
0 comments:
Post a Comment