when using git as the repository, assuming the head is at v1.6
if I find a bug in v1.0
git stash save "interruption " # is this necessary?
git checkout v1.0
vi badfile.c
git commit -a -m 'bugger fixed'
how is the fix propagated to subsequent versions?
Either merge with head, rebase onto head, or cherrypick.
Option A:
Option B:
Option C: