use git-get in combination with ghq
1 file changed, 13 insertions(+), 0 deletions(-)
changed files
A user/settings/fish/functions/ghq.fish
@@ -0,0 +1,13 @@ +function ghq + set cmd $argv[1] + switch $cmd + case "get" + command git-get $argv[2..] + case "status" "st" + command git-get list $argv[2..] + case "ls" + command ghq list $argv[2..] + case '*' + command ghq $argv + end +end