Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

how to merge child branch to master branch in git

git checkout -b child 
git commit
git checkout master
git commit
git marge child

Note: In Git version 2.23, a new command called git switch was introduced 
  to eventually replace git checkout
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #merge #child #branch #master #branch #git
ADD COMMENT
Topic
Name
6+5 =