23 August 2017
These are the typical Git commands a developer would use in a bread-and-butter daily scenario through the development lifecycle.
Create "feature" branch
We are creating a new branch called "myBranch123" this branch will contain all our commits for this feature:
add changes
make changes to the code and add them:
commit
push new branch to origin
create a PR request or merge manually
create a PR request for your branch to be merged into the "develop" branch
or: