This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# [alias:gb] Checkout a new git feature or bugfix branch | |
git checkout -b {{feature|bugfix}}/{{{description:kebab}}} | |
# [alias:gc] Checkout trunk branch back and pull new changes | |
git checkout {{main|develop}} && git pull | |
# List last git commits | |
git --no-pager log -n {{3}} --oneline | |
# Amend a commit without editing the message |