Michael Schenk
Michael Schenk
Thanks for the feature request. I'll have to investigate to see what's possible with the libgit library we are using.
You can pipe git log into gtm like this `git log --pretty=%H |gtm report`. If you can figure out how to properly filter git log for the branch you can...
A nice way to integrate with gtm is via a git pre-commit hook to populate the commit message with the time spent. Take a look at this https://github.com/git-time-metric/gtm/issues/72. Does that...
One option is to wrap the git command by using a shell function. This is tested on zsh, not sure if this will work in bash as is. Will likely...
Here's another option. ``` git config --add remote.origin.push '+refs/notes/gtm-data:refs/notes/gtm-data' git config --add remote.origin.push '+refs/notes/gtm-data:refs/notes/gtm-data' ``` Use with caution, still testing to see how well this works. You can learn more...
After some further testing I don't think this is going to work the way we'd want it to. When doing a `git push` it will only push the notes and...
Are you using git from the command line when committing or via a git client like SourceTree? Could it be related to this issue https://github.com/git-time-metric/gtm/issues/54? You can also try `gtm...
Here's something I've been experimenting with. This works with bash or zsh. You add this to either `.bashrc` or `.zshrc`. This only works from the command line and not with...
Good idea. We can add an option on init for that.
Yes it is the spinner that is interrupting the reporting output. We would have to add an option to turn off the spinner for the reporting command if you want...