LoginSignup
0
2

More than 3 years have passed since last update.

GitHubでtagをつけてsha256ハッシュを取得

Last updated at Posted at 2017-05-10
  • タグを打ってリリース
$ cd {レポジトリのディレクトリ}
$ git tag -a {タグ名} -m "記述" ハッシュ
$ git show {タグ名}
$ git push origin --tags
  • tar.gzファイルをダウンロードしてsha256ハッシュを取得
$ wget wget https://github.com/{ユーザ名}/{レポジトリ名}/tarball/{タグ名} 
$ shasum -a 256 {タグ名}.tar.gz 
  • タグを削除する
$ git tag -d {タグ名}
$ git push origin :{タグ名}
0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2