{"id":18570186,"url":"https://github.com/vpukhanov/glee","last_synced_at":"2026-04-25T11:33:07.378Z","repository":{"id":246553621,"uuid":"821096904","full_name":"vpukhanov/glee","owner":"vpukhanov","description":"Exclude files from git tracking without adding them to .gitignore","archived":false,"fork":false,"pushed_at":"2024-07-05T18:40:33.000Z","size":27,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-11T05:42:32.734Z","etag":null,"topics":["cli","git","gitignore","go","golang","tools"],"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/vpukhanov.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2024-06-27T20:04:32.000Z","updated_at":"2024-07-05T17:37:54.000Z","dependencies_parsed_at":"2024-07-05T19:15:52.638Z","dependency_job_id":"47179ffa-e536-468a-b2f1-6c55ce1950e4","html_url":"https://github.com/vpukhanov/glee","commit_stats":null,"previous_names":["vpukhanov/glee"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/vpukhanov/glee","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vpukhanov%2Fglee","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vpukhanov%2Fglee/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vpukhanov%2Fglee/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vpukhanov%2Fglee/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vpukhanov","download_url":"https://codeload.github.com/vpukhanov/glee/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vpukhanov%2Fglee/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32261110,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-25T09:15:33.318Z","status":"ssl_error","status_checked_at":"2026-04-25T09:15:31.997Z","response_time":59,"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","git","gitignore","go","golang","tools"],"created_at":"2024-11-06T22:38:00.153Z","updated_at":"2026-04-25T11:33:07.357Z","avatar_url":"https://github.com/vpukhanov.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# glee\n\nGlee is a command-line utility that simplifies the management of Git's local exclude patterns. It provides an intuitive interface for manipulating the `.git/info/exclude` file, which functions similarly to `.gitignore` but remains entirely local and is not shared with the repository.\n\n[Learn more about .git/info/exclude in the Git documentation](https://git-scm.com/docs/gitignore)\n\n## Usage\n\n```sh\n# Add specific files to the exclude list\nglee add filename1 filename2\n\n# Add multiple files using a glob pattern\nglee add *.txt\n\n# Add a glob pattern itself to the exclude list (escaping the special character)\nglee add \\*.txt\n\n# Remove specific files from the exclude list\nglee remove filename1 filename2\n\n# Remove multiple files using a glob pattern\nglee remove *.txt\n\n# Remove a glob pattern itself from the exclude list (escaping the special character)\nglee remove \\*.txt\n\n# Display current entries in the exclude list\nglee list\n\n# Clear all entries from the exclude list\nglee clear\n\n# Open the exclude file in your default text editor\nglee edit\n\n# Display help and available commands\nglee help\n```\n\n## Installation\n\n### Using Homebrew (macOS and Linux)\n\nIf you have Homebrew installed, you can install glee using:\n\n```sh\nbrew install vpukhanov/tools/glee\n```\n\nTo update glee to the latest version:\n\n```sh\nbrew upgrade glee\n```\n\n### Using Go\n\nIf you have Go installed on your system, you can install `glee` directly using the `go install` command:\n\n```sh\ngo install github.com/vpukhanov/glee@latest\n```\n\nThis will download the source code, compile it, and install the `glee` binary in your `$GOPATH/bin` directory. Make sure your `$GOPATH/bin` is added to your system's `PATH` to run `glee` from anywhere.\n\n### From Releases\n\n1. Visit the [Releases page](https://github.com/vpukhanov/glee/releases) of the repository.\n2. Download the archive for your operating system and architecture.\n3. Extract the archive:\n   - On macOS: Double-click the .zip file or use `unzip glee_*_Darwin_*.zip`\n   - On Linux: `tar -xzf glee_*_Linux_*.tar.gz`\n   - On Windows: Extract the .zip file using File Explorer or a tool like 7-Zip\n4. Move the `glee` binary to a directory in your system's `PATH`.\n\n### Building from Source\n\nTo build `glee` from source:\n\n1. Clone the repository:\n   ```sh\n   git clone https://github.com/vpukhanov/glee.git\n   ```\n2. Navigate to the project directory:\n   ```sh\n   cd glee\n   ```\n3. Build the project:\n   ```sh\n   go build\n   ```\n4. (Optional) Move the resulting `glee` binary to a directory in your `PATH`.\n\n### Verifying Installation\n\nAfter installation, you can verify that `glee` is installed correctly by running:\n\n```sh\nglee version\n```\n\nThis should display the version of `glee` you have installed.\n\n## Questions?\n\nIf you have any questions or need further clarification, feel free to open an issue for discussion.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvpukhanov%2Fglee","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvpukhanov%2Fglee","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvpukhanov%2Fglee/lists"}