Forgit: A utility tool powered by fzf for using Git interactively
1–10 of 26 posts
Re: Forgit: A utility tool powered by fzf for using Git interactively
#2Re: Forgit: A utility tool powered by fzf for using Git interactively
#3That UI is beautiful! What's their special sauce?
Re: Forgit: A utility tool powered by fzf for using Git interactively
#4So, "ga" similarly gives a fuzzy finder of files to "git add" that are actually in git status, "gcp" lets me cherry pick one or more commits from a branch where both the branch and commits are picked with fzf, and so on.
Re: Forgit: A utility tool powered by fzf for using Git interactively
#5That UI is beautiful! What's their special sauce?
Re: Forgit: A utility tool powered by fzf for using Git interactively
#6 # git config
alias.add-commit !git add -A && git commit
# .bash_profile
# Use like: gac this is my commit message
function gac ()
{
git add-commit -m "$*"
}Re: Forgit: A utility tool powered by fzf for using Git interactively
#7Re: Forgit: A utility tool powered by fzf for using Git interactively
#8https://github.com/OJFord/fzutils
I dislike all the short acronym-style aliases though; (I know it's fairly popular with git) not immediately obvious if it's supported to just use the usual commands.
Re: Forgit: A utility tool powered by fzf for using Git interactively
#9Re: Forgit: A utility tool powered by fzf for using Git interactively
#10If anyone cares, I do something similar with my git aliases: https://github.com/kbd/setup/blob/master/HOME/.config/git/co... So, "ga" similarly gives a fuzzy finder of files to "git add" that are actually in git status, "gcp" lets me cherry pick one or more commits from a branch where both the branch and commits are picked with fzf, and so on.