{"id":51317854,"url":"https://github.com/vdutts7/secure-git-template","last_synced_at":"2026-07-01T09:30:57.150Z","repository":{"id":356259621,"uuid":"1212465146","full_name":"vdutts7/secure-git-template","owner":"vdutts7","description":"Portable template that includes: file-level encryption, touchID-gated branch pushing, metadata leak-prevention, pre-push security checks. Works on any Git provider (Github, Gitlab, Bitbucket, etc)","archived":false,"fork":false,"pushed_at":"2026-06-23T18:49:34.000Z","size":89,"stargazers_count":5,"open_issues_count":1,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-23T20:23:34.336Z","etag":null,"topics":["git-crypt","template","touchid"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/vdutts7.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-16T12:06:40.000Z","updated_at":"2026-06-23T18:49:39.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/vdutts7/secure-git-template","commit_stats":null,"previous_names":["vdutts7/secure-git-template"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/vdutts7/secure-git-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vdutts7%2Fsecure-git-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vdutts7%2Fsecure-git-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vdutts7%2Fsecure-git-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vdutts7%2Fsecure-git-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vdutts7","download_url":"https://codeload.github.com/vdutts7/secure-git-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vdutts7%2Fsecure-git-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35001648,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-01T02:00:05.325Z","response_time":130,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-crypt","template","touchid"],"created_at":"2026-07-01T09:30:56.348Z","updated_at":"2026-07-01T09:30:57.143Z","avatar_url":"https://github.com/vdutts7.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n\u003cimg src=\"https://raw.githubusercontent.com/vdutts7/squircle/refs/heads/main/webp/material-icons/git.webp\" alt=\"logo\" width=\"80\" height=\"80\" /\u003e\n\n\u003ch1\u003esecure-git-template\u003c/h1\u003e\n\u003cp\u003e\u003ci\u003e\u003cb\u003eopinionated private repo bootstrap with one command setup\u003c/b\u003e\u003c/i\u003e\u003c/p\u003e\n\n\n\u003ca href=\"https://github.com/vdutts7/homebrew-tap\"\u003e\u003cimg src=\"./assets/badges/shelllock.badge.svg\" alt=\"shelllock\" height=\"34\" /\u003e\u003c/a\u003e \u0026nbsp;\n\u003ca href=\"https://github.com/AGWA/git-crypt\"\u003e\u003cimg src=\"./assets/badges/git-crypt.badge.svg\" alt=\"git-crypt\" height=\"34\" /\u003e\u003c/a\u003e \u0026nbsp; \n\n\n\u003c/div\u003e\n\n\u003cbr/\u003e\n\n## Table Of Contents\n\n- [About](#about)\n- [Install](#install)\n- [Usage](#usage)\n- [Requirements](#requirements)\n- [Contact](#contact)\n\n___\n\n## About\n\n- **problem** - private repos drift into inconsistent local setup and weak guardrails\n- **solution** - force one install path and one setup command with hooks + identity + encryption\n- **summary** - clone, run command, store key, commit, push\n\n___\n\n## Install\n\n```bash\nbrew tap vdutts7/tap \u0026\u0026 brew install shelllock git-crypt git-lfs \u0026\u0026 git lfs install \u0026\u0026 \\\ngit clone \u003cyour-repo-url\u003e \u0026\u0026 cd \u003cyour-repo-dir\u003e \u0026\u0026 \\\n./.hooks/scripts/setup.sh --remote \"\u003cyour-remote-url\u003e\" --name \"\u003cgit-name\u003e\" --email \"\u003cgit-email\u003e\" --pseudo-encrypt-commits --git-crypt --key-output \"$HOME/Downloads/git-crypt-key\" \u0026\u0026 \\\nopen \"$HOME/Downloads\" \u0026\u0026 rm \"$HOME/Downloads/git-crypt-key\" \u0026\u0026 \\\ngit add . \u0026\u0026 git commit -m \"initial setup\" \u0026\u0026 git push -u origin main\n```\n\n___\n\n## Usage\n\n```bash\n.hooks/scripts/setup.sh --remote \"\u003cyour-remote-url\u003e\" --name \"\u003cgit-name\u003e\" --email \"\u003cgit-email\u003e\" --pseudo-encrypt-commits --git-crypt --key-output \"$HOME/Downloads/git-crypt-key\"\n```\n\n| Arg | Purpose |\n|---|---|\n| `--remote` | set or replace `origin` |\n| `--name` | set repo-local `user.name` in `.git/config` |\n| `--email` | set repo-local `user.email` in `.git/config` |\n| `--pseudo-encrypt-commits` | obfuscate commit messages as `..` and log originals to `.commits.jsonl` |\n| `--git-crypt` | initialize `git-crypt` and activate `.gitattributes` encryption rule |\n| `--key-output` | export git-crypt key file |\n\nExamples:\n\n```bash\n# full setup\n./.hooks/scripts/setup.sh --remote \"git@github.com:owner/repo.git\" --name \"your-name\" --email \"your-email@example.com\" --pseudo-encrypt-commits --git-crypt --key-output \"$HOME/Downloads/git-crypt-key\"\n\n# first push\ngit add . \u0026\u0026 git commit -m \"initial setup\" \u0026\u0026 git push -u origin main\n```\n\n___\n\n## Requirements\n\n- `shelllock`\n- `git-crypt`\n- `git-lfs`\n\n___\n\n## Tools Used\n\n\u003cimg src=\"https://img.shields.io/badge/git--crypt-FF5722?style=for-the-badge\u0026logo=git\u0026logoColor=white\" alt=\"git-crypt\"/\u003e\n\u003cimg src=\"https://img.shields.io/badge/Git%20LFS-F05032?style=for-the-badge\u0026logo=gitlfs\u0026logoColor=white\" alt=\"Git LFS\"/\u003e\n\n\u003cbr/\u003e\n\n## Contact\n\n\u003ca href=\"https://vd7.io\"\u003e\u003cimg src=\"https://res.cloudinary.com/ddyc1es5v/image/upload/v1773910810/readme-badges/readme-badge-vd7.png\" alt=\"vd7.io\" height=\"40\" /\u003e\u003c/a\u003e \u0026nbsp; \u003ca href=\"https://x.com/vdutts7\"\u003e\u003cimg src=\"https://res.cloudinary.com/ddyc1es5v/image/upload/v1773910817/readme-badges/readme-badge-x.png\" alt=\"/vdutts7\" height=\"40\" /\u003e\u003c/a\u003e\n\n[git]: https://img.shields.io/badge/Git-181717?style=for-the-badge\u0026logo=github\u0026logoColor=white\n[github-url]: https://github.com/vdutts7/secure-git-template\n[homebrew]: https://img.shields.io/badge/Homebrew-FBB040?style=for-the-badge\u0026logo=homebrew\u0026logoColor=black\n[homebrew-url]: https://github.com/vdutts7/homebrew-tap\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvdutts7%2Fsecure-git-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvdutts7%2Fsecure-git-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvdutts7%2Fsecure-git-template/lists"}