Last active
August 29, 2015 13:56
-
-
Save sayanee/9112192 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# create bower.json with a version EG: 0.1.0 | |
# create a git repo EG: https://github.com/sayanee/timeline-css | |
npm install -g bower | |
bower register <package-name> <git-url> # EG: bower register timeline-css [email protected]:sayanee/timeline-css.git | |
bower info <package-name> # No available versions shown | |
git tag -a <version-no> -m "<comment>" # EG: git tag -a 0.1.0 -m "first version" | |
git push <remote-name> <version-no> # EG: git push origin 0.1.0 | |
bower info <package-name> # available versions shown |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment