Skip to content

Commit

Permalink
create tag object
Browse files Browse the repository at this point in the history
Some git commands ignore so called "lightweight tags" (e.g.
`git describe`), adding a message indicates this tag is for sharing/use
by others and so those git commands will take them into account.
  • Loading branch information
mmlb committed Jul 21, 2017
1 parent fcb355b commit cb52a6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ cleanrelease:
git push origin :refs/tags/$(version)

release: cross pack checksums
git tag $(version)
git tag -m $(version) $(version)
git push --tags
github-release release \
--user $(github_user) \
Expand Down

0 comments on commit cb52a6f

Please sign in to comment.