2013-05-10から1日間の記事一覧

gitのtag

git

// タグ付け % git tag -a TAG_NAME % git tag -a TAG_NAME -m 'message' // タグ一覧 % git tag -l // タグをリモートにpush % git push origin TAG_NAME // ローカルのタグをすべてサーバにpushする % git push --tags % git push origin --tags // 削除 %…