Adds new keybinds and bash functions for git

This commit is contained in:
William Carroll 2016-10-21 11:51:35 -04:00
parent e3147857a0
commit f6efe8ca2b
2 changed files with 39 additions and 3 deletions

View file

@ -1,3 +1,15 @@
# fuzzily-find-file
function wgff {
echo $(find . -type f | fzf)
}
# fuzzily-find-branch
function wgfb {
echo $(git branch -a | fzf)
}
# download files to /tmp directory
function wdownload {
URL="$1"