git create branch based on another branch code example

Example 1: create a new branch based on another branch

//when on branch 'dev' make branch 'myFeature' off of 'dev'
git checkout -b myfeature dev

Example 2: create branch from another branch

$ git checkout -b myFeature dev

Example 3: git create branch

$ git branch iss53
$ git checkout iss53

Example 4: can i create a branch inside of another branch in GIT

$ git checkout -b myFeature dev

Example 5: git create branch

$ vim index.html
$ git commit -a -m 'Create new footer [issue 53]'

Example 6: can i create a branch inside of another branch in GIT

$ git commit -am "Your message"

Tags:

Php Example