Git Subcommand Aliasing
You can map Aviator CLI command as
git
subcommand. In your .gitconfig
, you can add aliases:~/.gitconfig
# Do not forget an exclamation point before av.
[alias]
sync = !av stack sync
tree = !av stack tree
pr = !av pr
With the config above,
git sync
will execute av stack sync
.Last modified 25d ago