我有一个Git别名,扩展为:
git log --graph --oneline --all --decorate
据称,man git log
有两个可疑的选择:--not
和--branches
; 但我无法使其正常运行。
我应该如何编辑以隐藏藏匿处?
仅供参考:根据已接受的问题和评论,我的.gitconfig
别名现在看起来像这样:
[alias]
l = log --branches --remotes --tags --graph --oneline --decorate --notes HEAD
--tags
。