***Only for one time for installation git clone url 1.git --version 2.git config --global user.name "openforge username" 3.git config --global user.email "email as in openforge" 4.git config --list 5.git flow init *** To start work for each time 1.git checkout develop 2.git pull origin develop 3.git flow feature start branchname or git flow bugfix start branchname 4.git status (Run after your work to check files modified or untracked) 5.git add --all 6.git commit -m "commit message" 7.git flow feature publish (branchname) or git flow bugfix publish (branchname) ------------------------------------------------- *** After confirmation merge your branch to develop 8. git checkout develop 9.git pull origin develop 10.git merge (branchname) 11.git push origin develop