Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dinoboff/git-changelog-angular
https://github.com/dinoboff/git-changelog-angular
angular changelog conventional-changelog git hub
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/dinoboff/git-changelog-angular
- Owner: dinoboff
- License: mit
- Created: 2017-01-30T15:46:01.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-09T20:11:53.000Z (almost 8 years ago)
- Last Synced: 2024-04-29T18:22:59.428Z (7 months ago)
- Topics: angular, changelog, conventional-changelog, git, hub
- Language: JavaScript
- Size: 54.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# git-changelog Angular
[![Build Status][ci-badge]][travis]
[![Coverage][codecov-badge]][codecov]
[![bitHound Overall Score][bithound-badge]][bithound]Generate a change log from git commits using angular commit convention.
## Usage
To upload an existing tag changelog to github using [hub]:
```
git changelog v1.0.0 > draft.md
hub release create --draft --file=draft.md --browse v1.1.0
```To bump the current version and upload the changelog using npm:
```
git changelog HEAD > draft.md
export VERSION=$(head -n 1 draft.md)npm version $VERSION
git push origin master v$VERSION
hub release create --draft --file=draft.md --browse v$VERSIONunset VERSION
```## install
using npm:
```
npm install -g git-changelog-angular
```## License
MIT License
Copyright (c) 2017 Damien Lebrun
[hub]: https://github.com/github/hub#installation
[travis]: https://travis-ci.org/dinoboff/git-changelog-angular
[ci-badge]: https://travis-ci.org/dinoboff/git-changelog-angular.svg?branch=master
[bithound]: https://www.bithound.io/github/dinoboff/git-changelog-angular
[bithound-badge]: https://www.bithound.io/github/dinoboff/git-changelog-angular/badges/score.svg
[codecov]: https://codecov.io/gh/dinoboff/git-changelog-angular
[codecov-badge]: https://codecov.io/gh/dinoboff/git-changelog-angular/branch/master/graph/badge.svg