https://github.com/leolabs/yestergit
List your past commits grouped by date and branch.
https://github.com/leolabs/yestergit
branches git history
Last synced: about 1 month ago
JSON representation
List your past commits grouped by date and branch.
- Host: GitHub
- URL: https://github.com/leolabs/yestergit
- Owner: leolabs
- Created: 2020-05-15T15:27:04.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T16:47:33.000Z (over 3 years ago)
- Last Synced: 2025-01-22T03:29:25.662Z (over 1 year ago)
- Topics: branches, git, history
- Language: JavaScript
- Homepage:
- Size: 10.9 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# YesterGit
YersterGit is a simple command line application that allows you to list your past
commits grouped by date and branch. This allows you to easily see what you did in
the past few days, which might be handy if you need to report it to your team.

## Installation
Simply run
```shell
$ yarn global add yestergit
```
or
```shell
$ npm i -g yestergit
```
to install YesterGit. You can now run it using either `yestergit` or `ygit` if you
want to type less.
## Usage
By default, YesterGit will only display your own commits from the last branch. The
default repository is your current working directory. You can change these settings
using the flags documented below:
```
Usage: index ygit [options] (or yestergit [options])
Generate a timesheet of what you committed in the last days
Options:
-a, --author Filter results by the given user (default: current user)
-s, --since Filter by date range (default: 5 days ago)
-r, --repo The Git repo to analyze (default: cwd)
-b, --base The base branch to compare commits against (default: master)
-h, --help display help for command
```