-
-
Notifications
You must be signed in to change notification settings - Fork 9
Description
Hi !
I am always following your great project !
The problem I had with git was that I used keygrip instead of long ID in .gpg-id
file, prs
seems to not be able to handle them. Manually replacing keygrip with key ID allows prs
to recognize recipients. Great 👍
Now I still have some issues:
- I use multiple remote with custom name. It seems
prs
can't handle them:
prs sync remote
error: multiple remotes configured, cannot decide automatically
What should I do ?
- Even if now git recognizes the recipient, it seems I mostly can't use it
For exemple, when I want to edit a secret usingprs edit [secret_path] --verbose
it returns me:
error: git operation exited with non-zero status code: exit status: 128
If I have uncommited change, the previous command is able to warn me about it and stop. I have no issue to decrypt a file with gpg with prs show
. Also, my ssh key are stored with gpg too so I always have to set gpg agent using export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
before doing any git related stuff. Maybe it is not supported by prs
?
- Bash completion not working as expected
I did prs internal completion bash
this allows me to complete using tabs but it only propose me the file in the current folder. I have to cd
into password-store directory to be able to complete with secrets' names.
Thanks for your time :)