automagically make git passwords work
This commit is contained in:
parent
bd1731aae8
commit
f98acbb12a
|
@ -3,7 +3,10 @@
|
|||
name = stupidcomputer
|
||||
|
||||
[credential "https://git.beepboop.systems"]
|
||||
username = stupidcomputer
|
||||
helper = !git-rbw-wrap gitea
|
||||
|
||||
[credential "https://github.com"]
|
||||
helper = !git-rbw-wrap github-pat
|
||||
|
||||
[advice]
|
||||
addIgnoredFile = false
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
#!/bin/sh
|
||||
|
||||
[ -z "$1" ] && exit 1
|
||||
|
||||
# wrap rbw get $1 --full to output in the git credential helper
|
||||
# format
|
||||
|
||||
# username=yourusername
|
||||
# password=yourpassword
|
||||
|
||||
output=$(rbw get $1 --full)
|
||||
echo "$output" | \
|
||||
sed '1{s/^/password=/}' | \
|
||||
sed 's/Username: /username=/g' | \
|
||||
grep -E 'username|password' | \
|
||||
tac
|
Loading…
Reference in New Issue