#github
3 posts tagged github. Clear filter
-
How to Tag and Push a Release with Git
Set the -a and the -m flags like so git tag -a v1.0.0 -m "Note about the release goes here" Then to push the tag to a repository git push origin --tags And that's it! Here are the docs...
-
Changing GitHub Issue State in Git Commit Message
Changing issue state in git commit message for Github issues Example
-
My First Ruby Gem: Hashed_Attributes
I just wrote and released my first Ruby Gem, Hashed Attributes https://rubygems.org/gems/hashed\attributes. It is a very simple ActiveRecord extension for saving variables through a serialized...