【发布时间】:2012-02-24 19:56:33
【问题描述】:
我有一个 Git 别名,它扩展为:
git log --graph --oneline --all --decorate
根据man git log,有几个可疑选项:--not 和--branches;但我不能让它正常工作。
我应该如何编辑它以隐藏隐藏?
仅供参考:根据accepted question 和comment 我的.gitconfig 别名现在看起来像这样:
[alias]
l = log --branches --remotes --tags --graph --oneline --decorate --notes HEAD
【问题讨论】: