Continue reading »
How Stash Developers Avoid Branching from a Bad Commit
- By Tim Pettersen, Stash Developer
- Developer, Bamboo, Stash
- On May 1, 2013
One of my colleagues recently blogged about how the Confluence team avoids creating feature branches from bad commits. This blog post describes how to take the same idea one step further.
The Problem
I hate it when I make a trivial change, something like:
$ git checkout master
Switch to branch 'master'
$ git checkout -b STASHDEV-1234-fix-capitalisation-of-Stash
Switched to a new branch 'STASHDEV-1234-fix-capitalisation-of-Stash'
.. change capitalization of one word in a template

