Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gennaro-tedesco/gh-f
🔎 the ultimate compact fzf gh extension
https://github.com/gennaro-tedesco/gh-f
command-line gh-extension git github shell
Last synced: 6 days ago
JSON representation
🔎 the ultimate compact fzf gh extension
- Host: GitHub
- URL: https://github.com/gennaro-tedesco/gh-f
- Owner: gennaro-tedesco
- License: unlicense
- Created: 2022-01-20T00:40:09.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-09-16T15:11:23.000Z (about 2 months ago)
- Last Synced: 2024-10-19T11:14:26.354Z (17 days ago)
- Topics: command-line, gh-extension, git, github, shell
- Language: Shell
- Homepage:
- Size: 115 KB
- Stars: 290
- Watchers: 3
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-gh-cli-extensions - **f** - The ultimate compact fzf gh extension. (Tool)
- jimsghstars - gennaro-tedesco/gh-f - 🔎 the ultimate compact fzf gh extension (Shell)
README
the ultimate compact fzf gh extension
Installation •
Usage •
Customisation •
Feedback`gh-f` is the ultimate, compact and snappy `fzf` extension for `gh` cli. It addresses most of your daily GitHub workflow, if not all of it: `f` stands for filter, fzf or fomething felse.
## Installation
```
gh extension install gennaro-tedesco/gh-f
```### Requirements
- fzf
- [gnu core utils](https://www.gnu.org/software/coreutils/)
- [bat](https://github.com/sharkdp/bat) (optional, if not detected it uses `less` as a pager, instead)## Usage
Get started!
```
gh f
```shows the help page. Or watch it in action:
[![asciicast](https://asciinema.org/a/EmYMmhOAn0dWAyBYrNqKk5AlR.svg)](https://asciinema.org/a/EmYMmhOAn0dWAyBYrNqKk5AlR)
or a quick replay
![quick-demo](https://user-images.githubusercontent.com/15387611/157561174-d8bcfc81-0d12-4263-aeb9-19ba410ef40a.gif)
```
gh f [cmd]
```takes one of the following arguments or flags
| command | description | binds |
| :----------- | :---------------------------------------- | :------------------------------------------------------------------------------------------------ |
| -a, adds | add files to staging area | enter: add files to staging area
ctrl-d: diff selected file |
| -r, runs | show github workflow runs and filter logs | enter: search run logs |
| -g, greps | grep in files in revision history | interactive prompt: insert regex, select files, show pattern in revision history |
| -p, prs | view, diff and checkout PR | enter: checkout selected PR
ctrl-d: diff selected PR
ctrl-v: view selected PR |
| -b, branches | checkout and diff branches | enter: checkout selected branch
ctrl-d: diff selected branch
ctrl-x: delete selected branch |
| -l, logs | view, diff and checkout from logs history | enter: checkout selected commit
ctrl-d: diff selected commit
ctrl-v: view commit patch |
| -t, tags | checkout and diff version tags | enter: checkout tag in detached HEAD
ctrl-d diff against current branch |
| -s, search | search issues in any repository | interactive prompt: follow instructions |
| -m, myissue | search issues you opened somewhere | interactive prompt: follow instructions |
| -k, pick | cherrypick files between branches | enter: checkout cherrypicked files from branch |
| -e, envs | show git config list | enter: print selected config variable |
| -h, help | show help page |
| -V, version | print the current version |Most commands follow the semantics of `git` standard instructions (so that you can remember them easily), only we append an `s` to avoid conflicts, should you have those commands lying around in the shell as aliases or for scripting.
## Customisation
If you want to skip typing `gh f` before each command you may alias it directly, for instance
```
gh alias set prs 'f -p' # show PRs
gh alias set l 'f -l' # show git logs
```and likewise for the rest.
The prompt colours are defined via their ANSI sequences [here](https://github.com/gennaro-tedesco/gh-f/blob/37157bb30c2bceb99a5c9d6d199c543ce347690f/gh-f#L6-L9): change yourself accordingly, if you like different ones. Moreover notice that the rendering of text in the `fzf` preview window follows the options set in the `FZF_DEFAULT_OPTS` [env variable](https://github.com/junegunn/fzf#environment-variables): if you want to replicate exactly what is shown in the demo, [here](https://github.com/gennaro-tedesco/dotfiles/blob/132eeec7d9573ca3ccd47a078d19029b75010b2b/zsh/zshrc#L43) are my settings.
## Feedback
If you find this application useful consider awarding it a ⭐, it is a great way to give feedback! Otherwise, any additional suggestions or merge request is warmly welcome!
See also the complete family of extensions
- [gh-s](https://github.com/gennaro-tedesco/gh-s) to search for repositories with interactive prompt
- [gh-i](https://github.com/gennaro-tedesco/gh-i) to search for github issues with interactive prompt