{"id":18352238,"url":"https://github.com/xgames123/git-credential-pass","last_synced_at":"2026-01-25T13:04:11.364Z","repository":{"id":206837863,"uuid":"714712017","full_name":"Xgames123/git-credential-pass","owner":"Xgames123","description":"A simple git credential helper for gnu pass","archived":false,"fork":false,"pushed_at":"2026-01-23T22:57:18.000Z","size":48,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-24T11:18:37.803Z","etag":null,"topics":["git","git-credential","git-credential-helper","gnu","pass","password-store"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Xgames123.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-11-05T16:53:29.000Z","updated_at":"2026-01-23T22:57:24.000Z","dependencies_parsed_at":"2023-11-13T18:29:42.177Z","dependency_job_id":"bac63012-060f-4230-9bac-1f4294e0beb7","html_url":"https://github.com/Xgames123/git-credential-pass","commit_stats":null,"previous_names":["xgames123/git-credential-pass"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/Xgames123/git-credential-pass","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Xgames123%2Fgit-credential-pass","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Xgames123%2Fgit-credential-pass/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Xgames123%2Fgit-credential-pass/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Xgames123%2Fgit-credential-pass/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Xgames123","download_url":"https://codeload.github.com/Xgames123/git-credential-pass/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Xgames123%2Fgit-credential-pass/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28753411,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T10:25:12.305Z","status":"ssl_error","status_checked_at":"2026-01-25T10:25:11.933Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["git","git-credential","git-credential-helper","gnu","pass","password-store"],"created_at":"2024-11-05T21:35:22.212Z","updated_at":"2026-01-25T13:04:11.339Z","avatar_url":"https://github.com/Xgames123.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://github.com/Xgames123/git-credential-pass/blob/main/logo.png?raw=true\" alt=\"logo\"/\u003e\n\u003c/p\u003e\n\nA Simple [git credential helper](https://git-scm.com/docs/gitcredentials) for [pass](https://www.passwordstore.org/)\n\nIf the templating language is not powerful enough and you only want to read passwords from pass look at [pass-git-helper](https://github.com/languitar/pass-git-helper)\n\n# Features\n* Can store, get and erase passwords from pass\n* Mostly uses .gitconfig for configuration\n* Very simple template language\n\n# Installation\n\n## Archlinux\n\nInstall git-credential-pass from AUR [ArchLinux wiki](https://wiki.archlinux.org/title/Arch_User_Repository#Installing_and_upgrading_packages)\n\n## Debian/Ubuntu\n\nDownload the .deb file from the [latest release](https://github.com/Xgames123/git-credential-pass/releases/latest) and use ```dpkg -i file_you_just_downloaded.deb``` to install it\n\n# Configuring\n\n```~/.config/git-credential-pass/git.ldev.eu.org.template```\n\n```\n{password}\nlogin: {username}\n```\n\n```~/.gitconfig```\n\n```ini\n[credential]\n  helper = pass --pass-name \"git/{protocol}/{host}\" --template \"~/.config/git-credential-pass/{host}.template\"\n```\n\u003e **NOTE**\n\u003e Text between {} gets replaced by the value returned by git. See [custom_helpers](https://git-scm.com/docs/gitcredentials#_custom_helpers).\n\n\u003e **NOTE**\n\u003e Use \\\\ to escape characters \\\\{ will be treated as a literal\n\n\n## More examples\n\n### Store passwords as git/{host}/{username}\n\n```~/.gitconfig```\n\n```ini\n[credential]\n    helper = pass -p \"git/{host}/{username}\" --template \"~/.config/git-credential-pass/{host}.template\"\n```\n\n### Use only for a specific host\n```~/.gitconfig```\n\n```ini\n[credential \"https://git.ldev.eu.org\"] # only use git-credential-pass for git.ldev.eu.org\n    useHttpPath = true\n    helper = pass -p \"git/ldev\" --template \"~/.config/git-credential-pass/git.ldev.eu.org.template\"\n[credential] # use cache for everything else\n    helper=cache\n```\n\n### Store credentials using url\n\n```~/.gitconfig```\n\n```ini\n[credentials]\n    useHttpPath = true # this line is to make git send the path\n    # Store the credentials using the url path\n    helper = pass -p \"git/{path}\" --template \"~/.config/git-credential-pass/template.template\"\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxgames123%2Fgit-credential-pass","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxgames123%2Fgit-credential-pass","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxgames123%2Fgit-credential-pass/lists"}