{"id":37132395,"url":"https://github.com/loupeznik/ignoreinit","last_synced_at":"2026-04-26T12:01:09.025Z","repository":{"id":61629371,"uuid":"551553799","full_name":"Loupeznik/ignoreinit","owner":"Loupeznik","description":"A tool for creating .gitignore files from the command line","archived":false,"fork":false,"pushed_at":"2026-04-26T10:55:36.000Z","size":48,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-04-26T11:17:53.386Z","etag":null,"topics":["cli","gitignore","gitignore-cli","go"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Loupeznik.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2022-10-14T16:12:26.000Z","updated_at":"2026-04-26T10:53:51.000Z","dependencies_parsed_at":"2023-12-19T10:45:06.172Z","dependency_job_id":null,"html_url":"https://github.com/Loupeznik/ignoreinit","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/Loupeznik/ignoreinit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Loupeznik%2Fignoreinit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Loupeznik%2Fignoreinit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Loupeznik%2Fignoreinit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Loupeznik%2Fignoreinit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Loupeznik","download_url":"https://codeload.github.com/Loupeznik/ignoreinit/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Loupeznik%2Fignoreinit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32296259,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T09:34:17.070Z","status":"ssl_error","status_checked_at":"2026-04-26T09:34:00.993Z","response_time":129,"last_error":"SSL_read: 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":["cli","gitignore","gitignore-cli","go"],"created_at":"2026-01-14T15:26:57.962Z","updated_at":"2026-04-26T12:01:09.020Z","avatar_url":"https://github.com/Loupeznik.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ignoreinit\n\n![GitHub](https://img.shields.io/github/license/loupeznik/ignoreinit?style=for-the-badge)\n![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/loupeznik/ignoreinit?style=for-the-badge)\n\nIgnoreinit is a tool for creating .gitignore files from the command line. Gitignore files are pulled from [github/gitignore](https://github.com/github/gitignore) repo.\n\n## Usage\n\n### Create new .gitignore\n\nCreates new .gitignore based on given language in defined location (either relative or absolute).\n\n```bash\nignoreinit init \u003clanguage\u003e \u003clocation\u003e\n```\n\n### Replace existing gitignore\n\nReplaces existing .gitignore based on given language in defined location (either relative or absolute).\n\n```bash\nignoreinit replace \u003clanguage\u003e \u003clocation\u003e\n```\n\n### Merge existing gitignore\n\nMerges a gitignore for given language into existing .gitignore in defined location (either relative or absolute).\n\n```bash\nignoreinit merge \u003clanguage\u003e \u003clocation\u003e\n```\n\n## Build from source\n\n```bash\ngit clone https://github.com/Loupeznik/ignoreinit\ncd ignoreinit\ngo build -o build/ignoreinit github.com/loupeznik/ignoreinit\n```\n\n## Run with Docker\n\n```bash\n# Create .gitignore in the current directory\ndocker run --rm --user \"$(id -u):$(id -g)\" -v ${PWD}:/work loupeznik/ignoreinit:latest init go .\n\n# Create .gitignore in another directory directory\ndocker run --rm --user \"$(id -u):$(id -g)\" -v $HOME/projects:/work loupeznik/ignoreinit:latest init go .\n```\n\n## Install\n\n### Install via Snap\n\n[![ignoreinit](https://snapcraft.io/ignoreinit/badge.svg)](https://snapcraft.io/ignoreinit)\n\n*Ignoreinit* is available as a [snap](https://snapcraft.io/ignoreinit) for *amd64* and *arm64* based systems.\n\n```bash\nsudo snap install ignoreinit\n```\n\n### Install via Homebrew\n\n```bash\nbrew install --cask loupeznik/tap/ignoreinit\n```\n\n### Install via AUR\n\n```bash\nyay -S ignoreinit-bin\n```\n\n### Install via go\n\nYou may either install the executable directly into `$GOPATH` or download it from the [release page](https://github.com/Loupeznik/ignoreinit/releases).\n\n```bash\ngit clone https://github.com/Loupeznik/ignoreinit\ncd ignoreinit\ngo install github.com/loupeznik/ignoreinit\n```\n\nOr simply install the latest version with Go without needing to clone the repo:\n\n```bash\ngo install github.com/loupeznik/ignoreinit@latest\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Floupeznik%2Fignoreinit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Floupeznik%2Fignoreinit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Floupeznik%2Fignoreinit/lists"}