Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/madeindjs/git_track
Log time spent on each branch for a Git repository
https://github.com/madeindjs/git_track
Last synced: 20 days ago
JSON representation
Log time spent on each branch for a Git repository
- Host: GitHub
- URL: https://github.com/madeindjs/git_track
- Owner: madeindjs
- License: mit
- Created: 2018-02-21T12:43:46.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-02-22T15:34:01.000Z (over 6 years ago)
- Last Synced: 2024-09-16T03:12:25.252Z (about 2 months ago)
- Language: Rust
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# git_track
![Crate sticker](https://img.shields.io/crates/v/git_track.svg)
Log time spent on each branch for a Git repository.
## Usage
Start to `watch` your repository. This will create *.git_track.log* file. Each minute, **Git_track** will log your current branch in this file.
~~~bash
$ git_track --watch
~~~Then, to get a report juste enter `git_track`:
~~~bash
$ git_track
master 0.8
develop 3.5
feature/fatec_dae 21.5
~~~You can remove log for a specifi branch using `--delete`:
~~~bash
$ git_track --delete master
develop 3.5
feature/fatec_dae 21.5
~~~## Installation
~~~bash
$ cargo install git_track
~~~