Skip to content
Snippets Groups Projects
Commit aea78591 authored by Dmitry Medvinsky's avatar Dmitry Medvinsky Committed by Jason A. Donenfeld
Browse files

Add some commonly used completions for `pass git`

parent a6cf42c7
No related branches found
No related tags found
No related merge requests found
...@@ -100,6 +100,9 @@ complete -c $PROG -f -A -n '__fish_pass_uses_command --clip' -a "(__fish_pass_pr ...@@ -100,6 +100,9 @@ complete -c $PROG -f -A -n '__fish_pass_uses_command --clip' -a "(__fish_pass_pr
complete -c $PROG -f -A -n '__fish_pass_needs_command' -a git -d 'Command: execute a git command' complete -c $PROG -f -A -n '__fish_pass_needs_command' -a git -d 'Command: execute a git command'
complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'init' -d 'Initialize git repository' complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'init' -d 'Initialize git repository'
complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'status' -d 'Show status of the repo'
complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'add' -d 'Add changes to the index'
complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'commit' -d 'Commit changes to the repo'
complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'push' -d 'Push changes to remote repo' complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'push' -d 'Push changes to remote repo'
complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'pull' -d 'Pull changes from remote repo' complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'pull' -d 'Pull changes from remote repo'
complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'log' -d 'View changelog' complete -c $PROG -f -A -n '__fish_pass_uses_command git' -a 'log' -d 'View changelog'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment