Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

to add some docs for git-credential-keepassxc get command for non git use cases #40

Closed
muravjov opened this issue May 27, 2022 · 0 comments

Comments

@muravjov
Copy link

I've found out about this nice utility while looking for a way to get KeepassXC credentials in scripts without entering master password every time (like ssh agent).

The classical way is to

$ keepassxc-cli show <db> <entry>

but it requests master password every time. More about the issue is at keepassxreboot/keepassxc#1483

Using subj like

printf "url=https://example.com\nusername=foo\n" | git-credential-keepassxc get

or

(cat << 'EOF'
url=https://example.com
username=foo
EOF
) | git-credential-keepassxc get --json | jq .

does what I need but figuring out it from README.md is not easy.

Can you pls add some docs about what stdin should be for git-credential-keepassxc get explicitely.

Frederick888 added a commit that referenced this issue May 31, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant