git_track

Report time spent on given git project

~~~bash $ gittrack master 0.8 develop 3.5 feature/fatecdae 21.5 ~~~

You can remove log for a specifi branch using --delete

~~~bash $ gittrack --delete master develop 3.5 feature/fatecdae 21.5 ~~~

Installation

Install this Crontab (replace <your_project_path>). To do, run crontab -e & copy this line:

~~~bash * * * * * cd && git branch 2> /dev/null | sed -e '/^[^]/d' -e 's/ \(.*\)/\1/' >> /.tickets_count.log ~~~

Then clone this repository & build project with Cargo

~~~bash $ git clone https://github.com/madeindjs/gittrack.git $ cd gittrack $ cargo install ~~~

Then move binary built in <your_project_path>

~~~bash $ cp target/release/git_track ~~~