Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/neoclide/denite-git

Manger list of git objects with interface of denite.nvim
https://github.com/neoclide/denite-git

denite git neovim

Last synced: about 1 month ago
JSON representation

Manger list of git objects with interface of denite.nvim

Lists

README

        

# Denite-git

[![](http://img.shields.io/github/issues/neoclide/denite-git.svg)](https://github.com/neoclide/denite-git/issues)
[![](http://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
[![](https://img.shields.io/badge/doc-%3Ah%20denite--git.txt-red.svg)](doc/denite-git.txt)

Git log, git status and git changed source for [Denite.nvim](https://github.com/Shougo/denite.nvim).

Video of denite gitlog:

[![asciicast](https://asciinema.org/a/104395.png)](https://asciinema.org/a/104395)

Video of denite gitstatus:

[![asciicast](https://asciinema.org/a/104410.png)](https://asciinema.org/a/104410)

## Installation

For user of [vim-plug](https://github.com/junegunn/vim-plug), add:

Plug 'Shougo/denite.nvim'
Plug 'chemzqm/denite-git'

For user of [dein.vim](https://github.com/Shougo/dein.vim), add:

call dein#add('Shougo/denite.nvim')
call dein#add('chemzqm/denite-git')

to your vimrc and run `PlugInstall` if needed.

## Usage

For git log:

``` vim
" log of current file
Denite gitlog

" all git log of current repository
Denite gitlog:all

" filter gitlog with fix as input
Denite gitlog::fix
```

For git status:

``` vim
Denite gitstatus
```

For git changed

``` vim
Denite gitchanged
```

`gitchanged` source is just simple line source.

For git branch

```
Denite gitbranch
```

For git files
```vim
" view different versions of files on different branches (or commits, or tags)
Denite gitfiles

" all files in repo on master
Denite gitfiles:master

" all files in repo as of sha 31a3b3
Denite gitfiles:31a3b3

```

## Actions

Actions of gitlog:

* `open` default action for open seleted commit.
* `preview` preview seleted commit.
* `delete` run git diff with current commit for current buffer. (just named delete)
* `reset` run git reset with current commit.

Actions of gitstatus:

* `open` open seleted file, default action
* `add` run git add for seleted file(s).
* `delete` run git diff for seleted file. (just named delete)
* `reset` run git reset/checkout or remove for seleted file(s).
* `commit` run git commit for seleted file(s).

Actions of gitbranch:

* `checkout` default action to checkout selected branch.
* `delete` delete seleted branch.
* `merge` merge seleted branch with current branch.
* `rebase` rebase seleted branch with current branch.

Actions of gitfiles:
* `view` default action to view a file at a certain commit (read-only)

## Key Mapppings

It's recommanded to add custom key mappings for improve your speed of
interacting with denite source, for example:

``` viml
call denite#custom#map(
\ 'normal',
\ 'a',
\ '',
\ 'noremap'
\)

call denite#custom#map(
\ 'normal',
\ 'd',
\ '',
\ 'noremap'
\)

call denite#custom#map(
\ 'normal',
\ 'r',
\ '',
\ 'noremap'
\)
```