기본 콘텐츠로 건너뛰기

깃헙에서 릴리즈는 어떻게 하나?


간단,, git 명령어로 tag 생성

$ git tag 0.1
$ git push origin 0.1

또는
  • https://github.com/{id}/{repository}/releases (저장소 메인에서 release 클릭해서 이동)
  • "Create a new release" 또는 "Draft a new release"
  • https://github.com/{id}/{repository}/releases/tag/{tag_name} 에서 태그별 확인 가능

역시 간단,, git 명령어로 tag 삭제

$ git tag -d 0.1
$ git push origin :0.1

또는
  • https://github.com/{id}/{repository}/releases/tag/{tag_name} 에서 Delete 버튼
참고
  • https://help.github.com/articles/creating-releases/
  • http://stackoverflow.com/questions/18216991/create-a-tag-in-github-repository


댓글