I know there are numerous sources of information on setting up git aliases, but none of them seem to be working for me.
I have recently moved over to a new computer, and moved my whole git repository. Because our team is on TFS, I'm using a separate git directory (not sure if that's relevant or not.) Everything seems to be working except for my aliases.
Doing a "git config --global --list | grep alias" gives:
alias.st=status
alias.br=branch
alias.co=checkout
alias.com=commit
I have even wiped them out of my ~/.gitconfig and reset them all.
But none of them work. "git st" grinds for a few seconds and returns with no output, while "git status" gives the expected status response. Similarly, "git br" returns nothing, while "git branch" returns a list of my branches. "git co newbranch" does nothing, while "git checkout newbranch" properly switches to the new branch.
Can anyone give me a clue as to what has gone wrong?