- gitコマンドの使い方のメモ書き
git config --global user.name "name"
git config --global user.email "email"
# コミット
git commit -m "old message"
# コミットメッセージを更新
git commit --amend -m "new message"
git tag 1.0.0
git push --tags origin
git config --global user.name "name"
git config --global user.email "email"
# コミット
git commit -m "old message"
# コミットメッセージを更新
git commit --amend -m "new message"
git tag 1.0.0
git push --tags origin