https://github.com/thepatrik/git-changes
Simple cli for getting a git changelog.
https://github.com/thepatrik/git-changes
changelog cli git nodejs
Last synced: 6 months ago
JSON representation
Simple cli for getting a git changelog.
- Host: GitHub
- URL: https://github.com/thepatrik/git-changes
- Owner: thepatrik
- Created: 2018-10-04T04:29:40.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T21:37:08.000Z (over 3 years ago)
- Last Synced: 2025-10-22T23:19:50.677Z (8 months ago)
- Topics: changelog, cli, git, nodejs
- Language: JavaScript
- Homepage:
- Size: 821 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# git-changes
[](https://travis-ci.org/thepatrik/git-changes)
A small tool for getting a changelog from a git repo.
## Usage
Install git-changes from npm globally on your system, which allows you to run it from anywhere.
```console
$ npm install -g git-changes
```
Usage description
```
Usage: git-changes [--dir=] [--output=] [--since=] [--to==]
```
### Examples
Write changes from the latest relase to file
```console
$ git-changes --output=changelog
```
Get changes between releases
```console
$ git-changes --since=v1.0.22 --to=v1.0.25
```
Get changes since a specific git tag, residing in some other directory
```console
$ git-changes --since=v1.0.10 --dir=/Users/User/git-repo
```