This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//============= Assuming that we have our project with git initialized, create the Develop branch: | |
git branch develop | |
git push -u origin develop (if you are creating it) | |
git checkout -b develop origin/develop (if you are cloning and copying locally the develop branch) | |
// Create the a feature: | |
git checkout -b new-awesome-feature | |
git add <perfect-code-made-by-us> |