From 94e39555c60147b7965bf40169731a7d3fe916ed Mon Sep 17 00:00:00 2001 From: Alessandro Martini Date: Thu, 7 May 2020 19:22:50 -0300 Subject: [PATCH] fzf-git: add README.md --- plugins/fzf-git/README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 plugins/fzf-git/README.md diff --git a/plugins/fzf-git/README.md b/plugins/fzf-git/README.md new file mode 100644 index 000000000..13db993e2 --- /dev/null +++ b/plugins/fzf-git/README.md @@ -0,0 +1,23 @@ +

fzf-git

+

+ Git shortcuts, powered by + fzf +

+ +This plugin adds useful shortcuts to zsh for interacting with git. + +To use it, add `fzf-git` to the plugins array in your zshrc file: + +```zsh +plugins=(... fzf-git) +``` + +## Shortcuts + +| Shortcut | Command | Effect | +| -------------------------------------- | ---------- | ------------------------- | +| Ctrl + gCtrl + s | git status | Insert selected file | +| Ctrl + gCtrl + b | git branch | Insert selected branch | +| Ctrl + gCtrl + t | git tag | Insert selected tag | +| Ctrl + gCtrl + l | git log | Insert hash of select log | +| Ctrl + gCtrl + r | git remote | Insert selected remote |