Skip to content

Instantly share code, notes, and snippets.

View NathanaelZuchuon's full-sized avatar
🎯
Always achieve your goals

Nathanaël Zuchuon NathanaelZuchuon

🎯
Always achieve your goals
View GitHub Profile
//============= 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>