Contents
過去のリビジョンにタグを付ける
タグの作成
$ git tag -a <Tag> <Revision> -m <Message>
作成したタグをリモートにプッシュ
$ git push origin --tags
リモートリポジトリを変更
$ git remote set-url origin ssh://user@server:/path/to/repo.git
リモートリポジトリのリビジョンを取得
$ git ls-remote ssh://user@server:/path/to/repo.git <Tag>
ブランチの削除
ローカルリポジトリにあるブランチを削除
$ git branch -d <BranchName>
対応するリモートリポジトリにあるブランチを削除
$ git push --delete origin <BranchName>
変更の取り消し
コミット前の変更を取り消す
$ git checkout .