Color in git-log

前端 未结 5 1404
灰色年华
灰色年华 2020-12-02 08:01

When you run git log --decorate --pretty=oneline the output will have entries like (HEAD, refs/published/master, master) with coloration.

I

5条回答
  •  心在旅途
    2020-12-02 08:23

    As of git 1.8.3 (May 24, 2013), you can use %C(auto) to decorate %d in the format string of git log.

    From the release notes:

     * "git log --format" specifier learned %C(auto) token that tells Git
       to use color when interpolating %d (decoration), %h (short commit
       object name), etc. for terminal output.)
    

提交回复
热议问题