Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

how to create a new branch

- git branch xyz ==>
 it creates new branch named 'xyz' but still keep being on master branch
- git checkout xyz ==>
it will change your branch to the develop branch
- git checkout -b xyz ==> 
it creates also a branch named xyz and switches to it automatically
Source by www.atlassian.com #
 
PREVIOUS NEXT
Tagged: #create #branch
ADD COMMENT
Topic
Name
9+6 =