gawkworkflow: Rebasing

1 
1 4.5.1 Rebasing A Local Branch
1 -----------------------------
1 
1 For purely local branches, bringing your branch up to date is called
1 "rebasing", which causes the branch to look _as if_ you had started from
1 the latest version of 'master'.  The steps are as follows:
1 
1      $ git checkout master                Checkout master
1      $ git pull                           Update it
1      $ git checkout feature/python        Move back to new, purely local branch
1      $ git rebase master                  "Start over" from current master
1