Git

git 履歴

#git log --graph --decorate --oneline

tag 関連

tag 付

#git tag タグ名
I.E.
 #git tag v1.4   //v1.4のタグが付く。

tag push

git pushだけではtagはpushされない。 タグづけした後、以下のコマンドを実行する必要がある。

#git push origin タグ名

タグを一括して、pushしたい場合は以下の通り、

#git push origin --tag

tag削除

#git tag -d タグ名

tag一覧参照

#git tag

I.E.
# git tag
beta3.1.2
r0.1
push
r1.0.0

特定のtag参照

#git show タグ名
 ```