- or download this
git revert --no-commit 2.12_002..
git commit -m "Rewind to tag 2.12_002"
# continue work here
- or download this
git checkout -b start-anew 2.12_002
# - make edits here -
...
start-anew
git branch -d start-anew
git log --oneline --decorate --graph
- or download this
git init
echo -e "Hello, World\n---" >foo.txt
...
git commit -am "Edit for $VER"
git tag $VER
done
- or download this
echo -e "Added in 2.12_005\n---" >>foo.txt
git commit -am "Edit for 2.12_005"