Gitの巻
タグ
code:sh
# タグを付ける
git tag {tag}
# タグ一覧
git tag
# 特定のタグをチェックアウト
git checkout -b {tag} refs/tags/{tag}
# タグをpush
git push origin --tags
# タグを削除(ローカル
git tag -d {tag}
# タグを削除(リモート)
git push origin :{tag}
submodule
code:sh
# 作成
git submodule add {URL} {directory}
# 更新
git submodule update --remote
ファイル救出
コンセプトから理解するGitコマンド