- git flow -h (gives the list of sub commands)
- git flow init (initializes the repository)
- git status (shows which branch we are in)
- git flow feature list (gives list of feature branches)
- git flow feature start featureName (to create a feature branch)
- git branch (shows the list of branches)
- get flow feature list (gives list of feature branches)
- git status (shows the list of changes made)
- git add . (to add all the changes at once)
- git commit -m "Commit message" (to commit the changes)
- git log --oneline (shows the logs)
- git checkout develop (used to switch to specific develop branch)
- git flow feature finish -k featureName (used to merge the feature branch to develop without deleting the feature branch)
- git push -u origin develop (used to push the changes to cloud)
- git push --set-upstream origin featureName
- git flow release start 1.2.1
- git flow release finish –kn <1.1.1>
🔗 Team Onboarding:
- Developers needs to onboard to opensource community for easy information flow along with admins, please join with this link Curious Developers Community - Hacktoberfest
🔗 Resources:
- Hacktoberfest Official Website: https://hacktoberfest.digitalocean.com/
- GitHub Hacktoberfest Guide: https://github.com/firstcontributions/first-contributions

This work is licensed under a Creative Commons Attribution 4.0 International License.
All rights reserved by Curious Developers Community.