Github对全局 git 配置有以下建议~/.gitconfig
:
[alias] # Is this [-] only a comment in .gitconfig?
gb = git branch
gba = git branch -a
gc = git commit -v
gd = git diff | mate
gl = git pull
gp = git push
gst = git status
上面的命令在我的旧 Git 中工作。但是,由于某些未知原因,它们现在不起作用。
问题似乎不在命令中。它可能在另一个与 git 相关的文件中,它控制哪个文件影响别名。
如何让别名起作用?