Added Fuzzy Finder Update alias and some basis Git Aliases

This commit is contained in:
2019-02-13 12:12:05 -05:00
parent f731c65f4a
commit be671b0dd6

View File

@@ -63,3 +63,12 @@ alias ytdlmp3='youtube-dl --extract-audio --audio-format mp3 -o "%(title)s.%(ext
# termbin shortcut # termbin shortcut
alias tb='nc bin.planethawleywood.com 9999' alias tb='nc bin.planethawleywood.com 9999'
# Update FuzzyFinder (https://github.com/junegunn/fzf#upgrading-fzf)
alias fzfup='cd ~/.fzf && git pull && ./install'
# Git (a few in case globals aren't defined)
alias git-st='git status'
alias git-lg='git log --color --graph --pretty=format:"%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset" --abbrev-commit'
alias git-remotes='gits remote -v update'