{"id":13395410,"url":"https://github.com/neoclide/denite-git","last_synced_at":"2025-06-21T11:09:25.850Z","repository":{"id":54856272,"uuid":"82955410","full_name":"neoclide/denite-git","owner":"neoclide","description":"Manger list of git objects with interface of denite.nvim","archived":false,"fork":false,"pushed_at":"2021-01-25T03:42:27.000Z","size":63,"stargazers_count":72,"open_issues_count":1,"forks_count":10,"subscribers_count":7,"default_branch":"master","last_synced_at":"2024-07-31T17:23:51.670Z","etag":null,"topics":["denite","git","neovim"],"latest_commit_sha":null,"homepage":"","language":"Python","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/neoclide.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}},"created_at":"2017-02-23T17:54:45.000Z","updated_at":"2024-07-01T06:59:29.000Z","dependencies_parsed_at":"2022-08-14T04:50:45.262Z","dependency_job_id":null,"html_url":"https://github.com/neoclide/denite-git","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/neoclide/denite-git","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neoclide%2Fdenite-git","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neoclide%2Fdenite-git/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neoclide%2Fdenite-git/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neoclide%2Fdenite-git/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/neoclide","download_url":"https://codeload.github.com/neoclide/denite-git/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neoclide%2Fdenite-git/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261110622,"owners_count":23111066,"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":["denite","git","neovim"],"created_at":"2024-07-30T17:01:57.253Z","updated_at":"2025-06-21T11:09:20.840Z","avatar_url":"https://github.com/neoclide.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"# Denite-git\n\n[![](http://img.shields.io/github/issues/neoclide/denite-git.svg)](https://github.com/neoclide/denite-git/issues)\n[![](http://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)\n[![](https://img.shields.io/badge/doc-%3Ah%20denite--git.txt-red.svg)](doc/denite-git.txt)\n\nGit log, git status and git changed source for [Denite.nvim](https://github.com/Shougo/denite.nvim).\n\nVideo of denite gitlog:\n\n[![asciicast](https://asciinema.org/a/104395.png)](https://asciinema.org/a/104395)\n\nVideo of denite gitstatus:\n\n[![asciicast](https://asciinema.org/a/104410.png)](https://asciinema.org/a/104410)\n\n## Installation\n\nFor user of [vim-plug](https://github.com/junegunn/vim-plug), add:\n\n    Plug 'Shougo/denite.nvim'\n    Plug 'chemzqm/denite-git'\n\nFor user of [dein.vim](https://github.com/Shougo/dein.vim), add:\n\n    call dein#add('Shougo/denite.nvim')\n    call dein#add('chemzqm/denite-git')\n\nto your vimrc and run `PlugInstall` if needed.\n\n## Usage\n\nFor git log:\n\n``` vim\n\" log of current file\nDenite gitlog\n\n\" all git log of current repository\nDenite gitlog:all\n\n\" filter gitlog with fix as input\nDenite gitlog::fix\n```\n\nFor git status:\n\n``` vim\nDenite gitstatus\n```\n\nFor git changed\n\n``` vim\nDenite gitchanged\n```\n\n`gitchanged` source is just simple line source.\n\nFor git branch\n\n```\nDenite gitbranch\n```\n\nFor git files\n```vim\n\" view different versions of files on different branches (or commits, or tags)\nDenite gitfiles\n\n\" all files in repo on master\nDenite gitfiles:master\n\n\" all files in repo as of sha 31a3b3\nDenite gitfiles:31a3b3\n\n```\n\n\n## Actions\n\nActions of gitlog:\n\n* `open` default action for open seleted commit.\n* `preview` preview seleted commit.\n* `delete` run git diff with current commit for current buffer. (just named delete)\n* `reset` run git reset with current commit.\n\nActions of gitstatus:\n\n* `open` open seleted file, default action\n* `add` run git add for seleted file(s).\n* `delete` run git diff for seleted file. (just named delete)\n* `reset` run git reset/checkout or remove for seleted file(s).\n* `commit` run git commit for seleted file(s).\n\nActions of gitbranch:\n\n* `checkout` default action to checkout selected branch.\n* `delete` delete seleted branch.\n* `merge` merge seleted branch with current branch.\n* `rebase` rebase seleted branch with current branch.\n\nActions of gitfiles:\n* `view` default action to view a file at a certain commit (read-only)\n\n## Key Mapppings\n\nIt's recommanded to add custom key mappings for improve your speed of\ninteracting with denite source, for example:\n\n``` viml\ncall denite#custom#map(\n      \\ 'normal',\n      \\ 'a',\n      \\ '\u003cdenite:do_action:add\u003e',\n      \\ 'noremap'\n      \\)\n\ncall denite#custom#map(\n      \\ 'normal',\n      \\ 'd',\n      \\ '\u003cdenite:do_action:delete\u003e',\n      \\ 'noremap'\n      \\)\n\ncall denite#custom#map(\n      \\ 'normal',\n      \\ 'r',\n      \\ '\u003cdenite:do_action:reset\u003e',\n      \\ 'noremap'\n      \\)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneoclide%2Fdenite-git","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fneoclide%2Fdenite-git","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneoclide%2Fdenite-git/lists"}