{"id":49008394,"url":"https://github.com/lukasz-lobocki/gitas","last_synced_at":"2026-04-18T21:18:48.223Z","repository":{"id":195133704,"uuid":"690455281","full_name":"lukasz-lobocki/gitas","owner":"lukasz-lobocki","description":"Multiple git repos management made easy.","archived":false,"fork":false,"pushed_at":"2025-12-25T21:19:05.000Z","size":765,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-27T07:54:15.757Z","etag":null,"topics":["git","multiple","repository"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc0-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lukasz-lobocki.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":"2023-09-12T08:23:40.000Z","updated_at":"2025-12-25T21:17:04.000Z","dependencies_parsed_at":"2023-09-23T04:59:36.941Z","dependency_job_id":"d4392334-c1dc-4730-bd10-a962b4efe3c0","html_url":"https://github.com/lukasz-lobocki/gitas","commit_stats":null,"previous_names":["lukasz-lobocki/gitas"],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/lukasz-lobocki/gitas","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukasz-lobocki%2Fgitas","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukasz-lobocki%2Fgitas/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukasz-lobocki%2Fgitas/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukasz-lobocki%2Fgitas/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lukasz-lobocki","download_url":"https://codeload.github.com/lukasz-lobocki/gitas/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukasz-lobocki%2Fgitas/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31985097,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"ssl_error","status_checked_at":"2026-04-18T20:23:29.375Z","response_time":103,"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":["git","multiple","repository"],"created_at":"2026-04-18T21:18:47.537Z","updated_at":"2026-04-18T21:18:48.205Z","avatar_url":"https://github.com/lukasz-lobocki.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gitas\n\n![GitHub release (with filter)](https://img.shields.io/github/v/release/lukasz-lobocki/gitas)\n![GitHub](https://img.shields.io/github/license/lukasz-lobocki/gitas)\n[![Go Report Card](https://goreportcard.com/badge/github.com/lukasz-lobocki/gitas)](https://goreportcard.com/report/github.com/lukasz-lobocki/gitas)\n![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/lukasz-lobocki/gitas/main.yml)\n\nThis tool has two features:\n\n- display the [**status**](#1-gitas-status) of multiple git repos side by side\n- delegate [**shell**](#2-gitas-shell) commands on multiple git repos\n\nUnlike [gita](https://github.com/nosarthur/gita), it does not require maintenance of repositiories' list. It works on all repos found recursively in the given path.\n\nAdditionally, issuing `gitas status` command with `-q` flag makes gitas query the remote for sync status. This reveals the need for `git fetch`. _This flag requires network connection and may be time consuming._\n\n## 1. gitas status\n\nShow status of each git repository found in PATH\n\n```bash\ngitas status [PATH] [flags]\n```\n\n### 1.1. Examples\n\n![Alt text](samples/Screenshot_status.png)\n\n```bash\ngitas status ~ --name=p -b=true -o=n\ngitas status\ngitas status /home --time=false\n```\n\nSee also [markdown](samples/markdown_example.md) and [json](samples/json_example.json) example results.\n\n### 1.2. Flags\n\n```text\n  -n, --name {u|p|s}   name shown: unique|path|short (default u)\n  -t, --time           time of last commit shown (default true)\n  -f, --format {r|i}   format time: relative|iso (default r)\n  -b, --branch         branch shown\n  -q, --query          query fetch needed (implies -br)\n  -r, --remote         remote shown\n  -l, --url            url shown\n  -d, --dirty          dirty shown (default true)\n  -u, --untracked      untracked shown\n  -s, --stash          stash shown\n  -o, --order {t|n}    order: time|name (default t)\n  -e, --emit {t|j|m}   emit format: table|json|markdown (default t)\n  -h, --help           help for status\n```\n\n### 1.3. Flags inherited from parent commands\n\n```text\n      --logging int   logging level [0...3] (default 0)\n```\n\n## 2. gitas shell\n\nExecute \"command\" for each git repository found in PATH\n\n```bash\ngitas shell [PATH] \"command\" [flags]\n```\n\n### 2.1. Examples\n\n![Alt text](samples/Screenshot_shell.png)\n\n```bash\ngitas shell /home \"ls\"\ngitas shell ~ \"git describe --abbrev=0 --tags\"\ngitas shell \"ls | grep 'P'\"\n```\n\n### 2.2. Flags\n\n```text\n  -h, --help   help for shell\n```\n\n### 2.3. Flags inherited from parent commands\n\n```text\n      --logging int   logging level [0...3] (default 0)\n```\n\n## 3. Build\n\n```bash\ngoreleaser build --clean\n```\n\nFor more information check [BUILD.md](BUILD.md)\n\n## 4. License\n\n`gitas` was created by Lukasz Lobocki. It is licensed under the terms of the CC0 v1.0 Universal license.\n\nInspired by [gita](https://github.com/nosarthur/gita).\n\nAll components used retain their original licenses.\n\n## 5. Credits\n\n`gitas` was created with [cookiecutter](https://cookiecutter.readthedocs.io/en/latest/) and [template](https://github.com/lukasz-lobocki/go-cookiecutter).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flukasz-lobocki%2Fgitas","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flukasz-lobocki%2Fgitas","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flukasz-lobocki%2Fgitas/lists"}