git log和tag一起显示
--no-decorate, --decorate[=short|full|no]
Print out the ref names of any commits that are shown. If short is specified, the ref name prefixes refs/heads/, refs/tags/ and refs/remotes/ will not
be printed. If full is specified, the full ref name (including prefix) will be printed. The default option is short.
$ git log --decorate=full
commit 2e262fea7c0ddbdc4fc34d77ef75e19456148b8d (HEAD -> refs/heads/master, tag: refs/tags/0104T)
$ git log --decorate
commit 2e262fea7c0ddbdc4fc34d77ef75e19456148b8d (HEAD -> master, tag: 0104T)