我已在.gitconfig
中的/home/myUser/.gitconfig
文件中指定了某些别名,如下所示(我正在粘贴整个文件设置):
[user]
name = myName
email = myEmail@email.com
[core]
autocrlf = true
safecrlf = true
[push]
default = simple
[alias]
co = checkout
ci = commit
st = status
br = branch
hist = log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short
type = cat-file -t
dump = cat-file -p
我遇到了hist
别名的问题。有时,当执行de git hist
时,我得到所需的输出(我的意思是.gitconfig
别名的hist
中指定的格式);有时候它不被认可。我尝试重新启动终端,同样的事情发生了:有时它可以工作,有些时候却没有。
非常感谢任何帮助,非常感谢!