Github Lesson 3 - Merge local github branch to master branch in vs code

Опубликовано: 09 Октябрь 2024
на канале: myzingonline
1,808
16

Github playlist:
   • Github Tutorial  

Blog link:
https://blog.myzingonline.com/2020/04...

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