git workflow
git checkout -b YOUR-BRANCH-NAME
…work…
git commit -m “YOUR MESSAGE”
…repeat…
git rebase -i HEAD~(the number of commits) //the goal is to better group the commits
git checkout master
git merge YOUR-BRANCH-NAME
git checkout -b YOUR-BRANCH-NAME
…work…
git commit -m “YOUR MESSAGE”
…repeat…
git rebase -i HEAD~(the number of commits) //the goal is to better group the commits
git checkout master
git merge YOUR-BRANCH-NAME
Copyright © 2009