Josh Rabinowitz

Results 143 comments of Josh Rabinowitz

Please explain your use case much more simply. This feels like an XY problem: https://xyproblem.info/ Your example is so removed from the normal case of 'add a user's public key...

Hello, @paslandau Thanks for following up. You present an unusual use case, but it's an important one perhaps, and you do present a reasonable solution to the problem. If you...

Hello @simbo1905, I looked at the gist you posted and altered it to work in my environment, but I couldn't figure out how to actually step through ./debug.sh in visual...

Also I forgot to mention there's now the SECRETS_TEST_VERBOSE env var, which turns on SECRETS_VERBOSE and shows extra bats-core `diagnostic` data. This can be very useful to easily understand failing...

@simbo1905 Sorry I've been distracted and haven't gotten to this yet. It's on my radar.

Hey @simbo1905 I didn't get back to this. My normal debug method involves adding `bats` diagnostic code and running tests, or creating test git-secret repos and running a dev version...

This is briefly documented at https://www.gnupg.org/documentation/manuals/gnupg/Dirmngr-Configuration.html , which says that this directory is used to store "cached CRLs" (certificate revocation lists). I think this directory will only be present if...

This comment from closed PR https://github.com/sobolevn/git-secret/pull/378#issuecomment-469434337 notes: gnupg (GnuPG) 2.0.22, which is currently on CentOS7/RHEL7, has man pages for gpgconf that say the `--kill gpg-agent` option is supported, but the...

I'm planning to merge this PR which replaces `kill -9 $pid` with a regular `kill`, which is moderately safer. I would like avoid using `kill` altogether but I don't see...

Ok, so we're now using `kill` in place of `kill -9`, which is an improvement. I'd like to see us move towards either a) knowing the correct pid, ideally from...