You are here: MassTransit » Development »

git workflow

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