YusukeKato

How to use Git

Config

git config --global user.name "name"
git config --global user.email "email"

Update commit message

# コミット
git commit -m "old message"
# コミットメッセージを更新
git commit --amend -m "new message"

参考

Tag

git tag 1.0.0
git push --tags origin

参考

YKpages Home Page