【tig】main-view 页面增加 commitID 数据

作者: 乾九二 | 来源:发表于2018-04-19 11:58 被阅读2次

    问题

    在使用 tig 命令时,默认在 main-view 的界面中是没有 commit-ID 数据的,只有选中某个 commit 才会在底部出现当条 commit 的 commit-ID,对于有时想一眼看清log的整体 commit-ID 信息很不方便。

    默认 tig 的 main-view 界面如下:

    F7319856E91A33F4B18888B368894617.jpg

    main-view 配置

    通过man tig,发现 tig 是可以提供一个 tigrc 配置文件的!

    8D996816BFC8C33C175DD77B0A479461.jpg

    有配置文件就应该有对应的配置, man 里提供的太少信息,网上找到设置的对应网址说明:
    http://jonas.nitro.dk/tig/tigrc.5.html

    里面说的比较清楚,main-view 支持的 设置有:

    • author: 作者
    • date: 日期
    • commit-title: commit 信息
    • id: commit-ID
    • line-number: 行号

    可以看出,我们需要配置的支持是 id,因此可以在 $HOME/.tigrc 里增加配置:

    set main-view-id = yes,color
    

    表示开启 commit-ID,同时开启颜色支持。打开 tig 效果如下:

    81F6A90C8C2EB174BA200D1721B87998.jpg

    但我希望能把 commit-ID 放到 commit 信息旁边,所以需要重新配置 main-view 的显示:

    # 重设 main-view,增加 commit Id 信息
    set main-view = date:default author:abbreviated id:yes,color \
                    line-number:no,interval=1 \
                    commit-title:graph=v2,refs=yes,overflow=no
    

    配置的参数意义,请参考 http://jonas.nitro.dk/tig/tigrc.5.html 里面的说明。配置后显示如下:

    5D77DD2B6661102A79AB654C47B46A08.jpg

    此时目的达到。

    修改其他配置

    tig 默认的 tab-size 显示是 8 个空格,如果修改的话,在 $HOME/.tigrc 中增加:

    set tab-size = 4
    

    界面的移动:

    # 绑定一下常用操作
    bind generic H scroll-left
    bind generic L scroll-right
    
    bind main    G move-last-line
    bind generic G move-last-line
    bind generic J move-page-down
    bind generic K move-page-up
    bind generic <C-f> move-page-down
    bind generic <C-b> move-page-up
    
    bind generic g  none
    bind generic gg move-first-line
    bind generic gj next
    bind generic gk previous
    bind generic gp parent
    bind generic gP back
    bind generic gn view-next
    

    我的 $HOME/.tigrc 配置如下, GitHub 链接 【tigrc

    #
    # To use these keybindings copy the file to your HOME directory and include
    # it from your ~/.tigrc file:
    # 配置参考: http://jonas.nitro.dk/tig/tigrc.5.html
    
    # 绑定一下常用操作
    # bind generic j move-down
    # bind generic k move-up
    bind generic H scroll-left
    bind generic L scroll-right
    
    bind main    G move-last-line
    bind generic G move-last-line
    bind generic J move-page-down
    bind generic K move-page-up
    bind generic <C-f> move-page-down
    bind generic <C-b> move-page-up
    
    bind generic g  none
    bind generic gg move-first-line
    bind generic gj next
    bind generic gk previous
    bind generic gp parent
    bind generic gP back
    bind generic gn view-next
    
    # 设置 tab-size 为 4,默认为 8
    set tab-size = 4
    
    # 设置 blame-view 界面显示
    set blame-view-id = yes,color
    set blame-view-line-number = yes,interval=1
    
    # 重设 main-view,增加 commit Id 信息
    set main-view = date:default author:abbreviated id:yes,color \
                    line-number:no,interval=1 \
                    commit-title:graph=v2,refs=yes,overflow=no
    
    # 重设 tree-view 界面
    set tree-view = date:default author:abbreviated id:yes,color \
                    line-number:no,interval=5 \
                    mode file-size:units,width=0 \
                    file-name
    

    关注 【https://github.com/bbxytl/b-dotfiles】 了解更多好用的配置。

    相关文章

      网友评论

        本文标题:【tig】main-view 页面增加 commitID 数据

        本文链接:https://www.haomeiwen.com/subject/plqwkftx.html