Last active
February 8, 2022 05:33
Star
You must be signed in to star a gist
`.grip/settings.py` for https://github.com/joeyespo/grip that populates USERNAME and PASSWORD from invoking `git credential fill` with I/O through a pipe. See https://blog.hcf.dev/article/2021-07-27-grip.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # .grip/settings.py | |
| # Uses "git credential fill" to populate USERNAME and PASSWORD | |
| def git_credential_fill(): | |
| import subprocess | |
| argv = ["git", "credential", "fill"] | |
| process = subprocess.Popen(argv, text = True, stdin = subprocess.PIPE, stdout = subprocess.PIPE, stderr = subprocess.PIPE) | |
| output = process.communicate(input = "protocol=https\nhost=github.com\n")[0].strip() | |
| map = dict(item.split("=") for item in output.splitlines()) | |
| return (map["username"], map["password"]) | |
| (USERNAME, PASSWORD) = git_credential_fill() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment