Create new tag
git tag <tag-to-create>Check last tag
git describe --tags --abbrev=0Delete a tag
git tag -d <tag-name>Delete a remote tag
git push <remote> :<tag-name>Pushing commits with a tag
git push <remote> <branch> --tagsInteractive rebase
git rebase -i HEAD~<number>thanks @lupomontero
Formating git log
git log <last-tag>..HEAD --oneline --format="* %h %s (%an)"- %h: commit hash
- %s: comment string
- %an: author name
thanks @lupomontero