|
|
|
fzf-git.sh
|
|
|
|
==========
|
|
|
|
|
|
|
|
bash and zsh key bindings for Git objects, powered by [fzf][fzf].
|
|
|
|
|
|
|
|
Each binding will allow you to browse through Git objects of a certain type,
|
|
|
|
and select the objects you want to paste to your command-line.
|
|
|
|
|
|
|
|
[fzf]: https://github.com/junegunn/fzf
|
|
|
|
|
|
|
|
Installation
|
|
|
|
------------
|
|
|
|
|
|
|
|
1. Install the latest version of [fzf][fzf]
|
|
|
|
* (Optional) Install [bat](https://github.com/sharkdp/bat) for
|
|
|
|
syntax-highlighted file previews
|
|
|
|
1. Source [fzf-git.sh](https://raw.githubusercontent.com/junegunn/fzf-git.sh/main/fzf-git.sh) file from your .bashrc or .zshrc
|
|
|
|
|
|
|
|
Usage
|
|
|
|
-----
|
|
|
|
|
|
|
|
* List of bindings
|
|
|
|
* <kbd>CTRL-G</kbd><kbd>CTRL-F</kbd> for **F**iles
|
|
|
|
* <kbd>CTRL-G</kbd><kbd>CTRL-B</kbd> for **B**ranches
|
|
|
|
* <kbd>CTRL-G</kbd><kbd>CTRL-T</kbd> for **T**ags
|
|
|
|
* <kbd>CTRL-G</kbd><kbd>CTRL-R</kbd> for **R**emotes
|
|
|
|
* <kbd>CTRL-G</kbd><kbd>CTRL-H</kbd> for commit **H**ashes
|
|
|
|
* <kbd>CTRL-G</kbd><kbd>CTRL-S</kbd> for **S**tashes
|
|
|
|
* Inside fzf
|
|
|
|
* <kbd>TAB</kbd> or <kbd>SHIFT-TAB</kbd> to select multiple objects
|
|
|
|
* <kbd>CTRL-/</kbd> to change preview window layout
|
|
|
|
* <kbd>CTRL-O</kbd> to open the object in the web browser (in GitHub URL scheme)
|
|
|
|
|
|
|
|
Customization
|
|
|
|
-------------
|
|
|
|
|
|
|
|
```sh
|
|
|
|
# Redefine this function to change the options
|
|
|
|
_fzf_git_fzf() {
|
|
|
|
fzf-tmux -p80%,60% -- \
|
|
|
|
--layout=reverse --multi --height=50% --min-height=20 --border \
|
|
|
|
--preview-window='right,50%,border-left' \
|
|
|
|
--bind='ctrl-/:change-preview-window(down,50%,border-top|hidden|)' "$@"
|
|
|
|
}
|
|
|
|
```
|