{"id":15672629,"url":"https://github.com/ytakahashi/igit","last_synced_at":"2025-05-06T21:44:36.491Z","repository":{"id":40372337,"uuid":"131547238","full_name":"ytakahashi/igit","owner":"ytakahashi","description":"Interactive git commands using fzf, available as zsh plugin","archived":false,"fork":false,"pushed_at":"2024-03-17T22:17:09.000Z","size":45,"stargazers_count":16,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-25T18:40:54.908Z","etag":null,"topics":["fzf","git","zsh","zsh-plugin"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/ytakahashi.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}},"created_at":"2018-04-30T02:14:37.000Z","updated_at":"2024-09-05T13:19:59.000Z","dependencies_parsed_at":"2024-04-14T09:38:34.496Z","dependency_job_id":"866ab5ad-e97f-48ff-a69a-bf7c0d282960","html_url":"https://github.com/ytakahashi/igit","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ytakahashi%2Figit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ytakahashi%2Figit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ytakahashi%2Figit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ytakahashi%2Figit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ytakahashi","download_url":"https://codeload.github.com/ytakahashi/igit/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242833321,"owners_count":20192732,"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","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":["fzf","git","zsh","zsh-plugin"],"created_at":"2024-10-03T15:29:10.959Z","updated_at":"2025-03-10T10:31:17.477Z","avatar_url":"https://github.com/ytakahashi.png","language":"Shell","funding_links":[],"categories":["Plugins"],"sub_categories":["ZSH on Windows","Zinit (née zplugin)"],"readme":"# igit\n\n`igit` - interactive git command using fzf\n\n![igit](https://user-images.githubusercontent.com/26239560/45913024-20246d80-be66-11e8-904c-63bad327e1ce.gif)\n\n## Requirements\n\n- zsh\n- [fzf](https://github.com/junegunn/fzf)\n\n## Install\n\n### With [zinit](https://github.com/zdharma-continuum/zinit)\n\n```zsh\nzinit light ytakahashi/igit\n\n# or\n# zinit load ytakahashi/igit\n```\n\n### With [zplug](https://github.com/zplug/zplug) :hibiscus:\n\n```zsh\nzplug \"ytakahashi/igit\"\n```\n\n### Manually\n\nClone this repository and load `igit.plugin.zsh` from `.zshrc`\n\n```.zshrc\nsource /path/to/igit.plugin.zsh\n```\n\n## Usage\n\n```shell\nigit [command]\n```\n\ncommand: `add`, `branch`, `cherry-pick`, `delete`, `diff`, `log`, `merge`, `stash`, `switch`, `tag`, `revert`\n\n### Basic usage\n\nBasic operation on fzf window.  \n\n| Key                                                         | Description            |\n| :---------------------------------------------------------- | :--------------------- |\n| \u003ckbd\u003eCtrl\u003c/kbd\u003e+\u003ckbd\u003ej\u003c/kbd\u003e/\u003ckbd\u003en\u003c/kbd\u003e                   | Move cursor down       |\n| \u003ckbd\u003eCtrl\u003c/kbd\u003e+\u003ckbd\u003ek\u003c/kbd\u003e/\u003ckbd\u003ep\u003c/kbd\u003e                   | Move cursor up         |\n| \u003ckbd\u003eCtrl\u003c/kbd\u003e+\u003ckbd\u003ec\u003c/kbd\u003e/\u003ckbd\u003eg\u003c/kbd\u003e or \u003ckbd\u003eEsc\u003c/kbd\u003e | Exit                   |\n\n`igit` specific operation on fzf window.\n\n| Key                           | Description                                                                     |\n| :---------------------------- | :------------------------------------------------------------------------------ |\n| \u003ckbd\u003eCtrl\u003c/kbd\u003e+\u003ckbd\u003es\u003c/kbd\u003e  | See selected file/branch/commit                                                 |\n| \u003ckbd\u003eAlt\u003c/kbd\u003e+ `key`         | Put git command using selected file/branch/commit onto the editing buffer stack |\n\n### igit help\n\nShow available commands.\n\n### igit add\n\nShow current status and add selected files.\n\n| Key                                             | Description            |\n| :---------------------------------------------- | :--------------------- |\n| \u003ckbd\u003eCtrl\u003c/kbd\u003e+\u003ckbd\u003ei\u003c/kbd\u003e or \u003ckbd\u003eTab\u003c/kbd\u003e  | Mark/Unmark files      |\n| \u003ckbd\u003eAlt\u003c/kbd\u003e+\u003ckbd\u003ea\u003c/kbd\u003e                     | Add selected files     |\n\n### igit branch\n\nShow local and remote branchs.\n\n| Key                                        | Description                               |\n| :----------------------------------------- | :---------------------------------------- |\n| \u003ckbd\u003eAlt\u003c/kbd\u003e+\u003ckbd\u003ed\u003c/kbd\u003e                | Delete selected branch                    |\n| \u003ckbd\u003eAlt\u003c/kbd\u003e+\u003ckbd\u003es\u003c/kbd\u003e                | Switch to selected branch                 |\n| \u003ckbd\u003eAlt\u003c/kbd\u003e+\u003ckbd\u003em\u003c/kbd\u003e                | Merge selected branch into current branch |\n\n### igit cherry-pick\n\nShow commit log and cherry-pick selected commit.\n\n| Key                                        | Description            |\n| :----------------------------------------- | :--------------------- |\n| \u003ckbd\u003eEnter\u003c/kbd\u003e                           | Cherry-pick the commit |\n\n### igit delete\n\nShow branches and delete selected branch(es).\n\n| Key                                        | Description           |\n| :----------------------------------------- | :-------------------- |\n| \u003ckbd\u003eEnter\u003c/kbd\u003e                           | Delete the branch(es) |\n\n### igit diff\n\nShows current status and see diff of selected file.\n\n### igit log\n\nShow log of branch.  \n\n| Key                                        | Description                  |\n| :----------------------------------------- | :--------------------------- |\n| \u003ckbd\u003eAlt\u003c/kbd\u003e+\u003ckbd\u003eh\u003c/kbd\u003e                | Reset (hard) to the commit   |\n| \u003ckbd\u003eAlt\u003c/kbd\u003e+\u003ckbd\u003em\u003c/kbd\u003e                | Reset (mixed) to the commit  |\n| \u003ckbd\u003eAlt\u003c/kbd\u003e+\u003ckbd\u003es\u003c/kbd\u003e                | Reset (soft) to the commit   |\n\n### igit stash\n\nShow stashes.\n\n| Key                                        | Description                  |\n| :----------------------------------------- | :--------------------------- |\n| \u003ckbd\u003eAlt\u003c/kbd\u003e+\u003ckbd\u003ea\u003c/kbd\u003e                | Apply selected stash         |\n| \u003ckbd\u003eAlt\u003c/kbd\u003e+\u003ckbd\u003ed\u003c/kbd\u003e                | Drop selected stash          |\n\n### igit tag\n\nShow tags.\n\n| Key                                        | Description                  |\n| :----------------------------------------- | :--------------------------- |\n| \u003ckbd\u003eCtrl\u003c/kbd\u003e+\u003ckbd\u003es\u003c/kbd\u003e               | Show selected tag            |\n| \u003ckbd\u003eAlt\u003c/kbd\u003e+\u003ckbd\u003ec\u003c/kbd\u003e                | Show diff between the tags   |\n| \u003ckbd\u003eAlt\u003c/kbd\u003e+\u003ckbd\u003ep\u003c/kbd\u003e                | Push the tag to origin       |\n| \u003ckbd\u003eAlt\u003c/kbd\u003e+\u003ckbd\u003es\u003c/kbd\u003e                | Switch to selected tag       |\n\n## Key Bingings\n\nFollowing key bindings are available.\n\n| Key                                                         | Command                |\n| :---------------------------------------------------------- | :--------------------- |\n| \u003ckbd\u003eCtrl\u003c/kbd\u003e+\u003ckbd\u003eg\u003c/kbd\u003e \u003ckbd\u003eCtrl\u003c/kbd\u003e+\u003ckbd\u003ea\u003c/kbd\u003e   | igit add               |\n| \u003ckbd\u003eCtrl\u003c/kbd\u003e+\u003ckbd\u003eg\u003c/kbd\u003e \u003ckbd\u003eCtrl\u003c/kbd\u003e+\u003ckbd\u003eb\u003c/kbd\u003e   | igit branch            |\n| \u003ckbd\u003eCtrl\u003c/kbd\u003e+\u003ckbd\u003eg\u003c/kbd\u003e \u003ckbd\u003eCtrl\u003c/kbd\u003e+\u003ckbd\u003el\u003c/kbd\u003e   | igit log               |\n| \u003ckbd\u003eCtrl\u003c/kbd\u003e+\u003ckbd\u003eg\u003c/kbd\u003e \u003ckbd\u003eCtrl\u003c/kbd\u003e+\u003ckbd\u003em\u003c/kbd\u003e   | igit merge             |\n| \u003ckbd\u003eCtrl\u003c/kbd\u003e+\u003ckbd\u003eg\u003c/kbd\u003e \u003ckbd\u003eCtrl\u003c/kbd\u003e+\u003ckbd\u003es\u003c/kbd\u003e   | igit switch            |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fytakahashi%2Figit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fytakahashi%2Figit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fytakahashi%2Figit/lists"}