Use "a" key to toggle between single page and slideshow modes.
Use the space bar or right arrow for next slide,
left arrow to back up.
|
git checkout master git pull
git checkout -b storybranch
git commit -am "summary of what changes I made just now"
git diff master
git checkout master git pull git checkout storybranch git rebase master
Do this frequently, to keep in sync. with other changes.
git checkout master git merge storybranch git push git checkout storybranchThis presumes there are no merge conflicts.
Combined from Agile git and the story branch pattern and Hack && Ship
Notes: