I have alias for some Git commands:
# ~/.gitconfig
[alias]
co = checkout
br = branch
ci = commit
st = status
ps = push
unstage = reset HEAD --
From Nushell, after typing git co and tabbing, I expects to get list of branches in auto-complete, but I got list of subdirectories instead.
