Tuesday, 22 November 2022

Git merge branch to another branch

$ git checkout develop
$ git pull
$ git checkout test-branch
$ git merge develop
$ git push

Git merge branch to another branch

$ git checkout develop $ git pull $ git checkout test-branch $ git merge develop $ git push