{"id":15968748,"url":"https://github.com/zemberdotnet/gum","last_synced_at":"2026-05-14T23:40:49.778Z","repository":{"id":39165393,"uuid":"487337180","full_name":"zemberdotnet/gum","owner":"zemberdotnet","description":"Gum is a tool to manage many git repositories at once.","archived":false,"fork":false,"pushed_at":"2022-09-10T13:39:44.000Z","size":34,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-04T14:29:39.475Z","etag":null,"topics":["git","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/zemberdotnet.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-04-30T17:16:40.000Z","updated_at":"2022-06-24T02:45:51.000Z","dependencies_parsed_at":"2023-01-17T17:15:34.328Z","dependency_job_id":null,"html_url":"https://github.com/zemberdotnet/gum","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zemberdotnet/gum","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zemberdotnet%2Fgum","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zemberdotnet%2Fgum/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zemberdotnet%2Fgum/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zemberdotnet%2Fgum/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zemberdotnet","download_url":"https://codeload.github.com/zemberdotnet/gum/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zemberdotnet%2Fgum/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267606634,"owners_count":24114766,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-28T02:00:09.689Z","response_time":68,"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","tools"],"created_at":"2024-10-07T19:03:55.611Z","updated_at":"2026-05-14T23:40:49.729Z","avatar_url":"https://github.com/zemberdotnet.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gum\n\nGum is a tool for managing many git repositories at once. It's ideal for \nmaking mass edits, retrieving information from a common place in many repos, and\nother large scale scripting tasks.\n\n## Contents\n\n- [Installation](#installation)\n- [Basic Usage](#basic-usage)\n- [Commands](#commands)\n  - [Configuration Commands](#configuration-commands)\n    - [prefix](#prefix)\n    - [make](#make)\n    - [group](#group)\n    - [register](#register)\n    - [unregister](#unregister)\n    - [list](#list)\n  - [Git Commands](#git-commands)\n    - [clone](#clone)\n    - [status](#status)\n    - [add](#add)\n\n\n## Installation\n\n```sh\n    git clone\n    go install\n```\n\n## Basic Usage\n\nThe commands below show a basic workflow of:\n\n- setting a prefix\n- cloning and registering repos\n- deleting a file from the repos\n- committing and pushing changes\n\n```sh\ngum prefix git@github.com:zemberdotnet/\n\ngum clone gum\ngum register gum\n\ngum clone blog\ngum register blog\n\ngum sh rm README.md\ngum add README.md\ngum commit -m \"removing readme\"\ngum push\n```\n\n## Commands\n\n### Configuration Commands\n\n### prefix\n\n- used to set a prefix for use in `gum clone`\n- example usage:\n  ```sh\n  gum prefix git@github.com:zembderdotnet/\n  ```\n\n### make\n\n`make` is a convience command to clone all the repos in the current group. Given\nthe following `.gum` file:\n\n```json\n{\n  \"Prefix\": \"git@github.com:zemberdotnet/\",\n  \"CurrentGroup\": \"default\",\n  \"Groups\": {\n    \"default\": [\"hnreduce\", \"gum\"],\n    \"otherGroup\": [\"blog\"]\n  }\n}\n```\n\nmake would clone `git@github.com:zemberdotnet/hnreduce` and `git@github.com:zemberdotnet/gum` to the local working directory. This command can be useful when setting up a working environment.\n\n### group\n\n`group` changes the active repo group. The default group is `default`. This allows \nswitching between different groups of repos contained in the same directory.\n\n### register\n\n`register` adds a local repo to the current group. Given the active group is `default` and a directory like the following\n```sh\nls -a\nblog/ .gum gum/\n```\nDoing the `gum register blog` would add the `blog` repo to the current group, `default`.\n\n\n### unregister\n\n`unregister` removes a local repo from the current group.\n\n### list\n\n`list` prints a new-line delimited list of the repos registered in the current group.\n\n\n### Git Commands\n\n### clone\n`clone` works the same way as `git clone \u003crepo\u003e`. It works in combination with\nyour current `prefix`, if you've set one.\n\nExample usage with `gum prefix`:\n```sh\ngum prefix git@github.com:zemberdotnet/\ngum clone gum\ngum register gum\nls -a\n.gum gum/\n```\nExample usage without using `gum prefix`:\n```sh\ngum clone git@github.com:zemberdotnet/gum\ngum register gum\nls -a\n.gum gum/\n```\n\n### status\n\n`status` works the same `git status` does. It will print the `git status` for each\nrepo registered in the current group. It accepts the same flags that `git status`\naccepts. Example usage to print the short-form status for all registered repos:\n```sh\ngum status -s\n#target:gum\nM README.md\n#target:blog\nM README.md\n```\n\n### add\n`add` works the same as `git add \u003cchanged file\u003e`. It will attempt to add the file\nin every repository that is registered in the current group.\n\n`add` also accepts the same flags that `git add` does. The following shows a common\nexample of `add`:\n```sh\ngum sh rm README.md\ngum status\n#target:gum\nOn branch main\nYour branch is up to date with 'origin/main'.\n\nChanges not staged for commit:\n  (use \"git add/rm \u003cfile\u003e...\" to update what will be committed)\n  (use \"git restore \u003cfile\u003e...\" to discard changes in working directory)\n        deleted:    README.md\n\nno changes added to commit (use \"git add\" and/or \"git commit -a\")\n#target:blog\nOn branch main\nYour branch is up to date with 'origin/main'.\n\nChanges not staged for commit:\n  (use \"git add/rm \u003cfile\u003e...\" to update what will be committed)\n  (use \"git restore \u003cfile\u003e...\" to discard changes in working directory)\n        deleted:    README.md\n\nno changes added to commit (use \"git add\" and/or \"git commit -a\")\ngum add -A\ngum commit -m \"remove README.md\"\ngum push\n```\n\n\n- commit\n- push\n- sh\n- checkout\n- pull\n- switch\n- stash\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzemberdotnet%2Fgum","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzemberdotnet%2Fgum","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzemberdotnet%2Fgum/lists"}