git production branch code example
Example 1: git workflow
a basic git workflow
1. clone repsitory
2. staging
3. commit
4. push
Example 2: gitflow workflow diagram
$ git checkout -b myfeature develop
Switched to a new branch "myfeature"
a basic git workflow
1. clone repsitory
2. staging
3. commit
4. push
$ git checkout -b myfeature develop
Switched to a new branch "myfeature"