devkabiir

Results 27 comments of devkabiir

One possible solution would be that gtm runs a __lightweight__ local HTTP server that accepts `POST` and `GET` requests. This removes the need for any native binaries to be installed....

> You tried simply `-terminal-off` (only one dash)? it's not in the things you said you tried, and I think it's the way that the command help shows. Yes I...

I think a command for `gtm stash` would be more appropriate, which then can be linked as a git sub-command git-time-metric/gtm#64. Currently there are no git hooks for stash related...

Hi @mschenk42, I've been wanting to learn Go for some time now and I want this feature in gtm. So If it's okay with you I'd like to work on...

Hi @desaroger, here is a workaround until `--only-staged` is implemented. In your `commit-msg` hook, before you do anything with the commit message ```bash GTM_DIR="./.gtm" GTM_UNSTAGED_DIR="./.gtm-unstaged" CLEAN_PATH=(sed -e 's#/#_#g' -e 's#\\#_#g')...

@desaroger You're welcome. I will start working on the gtm implementation around this Sunday. But please feel free to start on your own. I have never programmed in Go so...

> please do the same if you have time. Sure thing. Look at https://github.com/git-time-metric/gtm/issues/79#issuecomment-503881802. This might help in your case as well. Most apps know or have a way to...

@desaroger I did start working on it, kind of figured what needs to be changed. 1. Create a new flag `staged-only` in `status` command 2. Pass that flag to (status.go...

@jakemac53 Thanks, The way I understand it, `testBuilderAndCollectAssets` is useful when Builder `A` depends on outputs/assets from builder `B`. In my case `collector` does not produce any outputs it always...