git show commit in beyond compare

后端 未结 6 1703
半阙折子戏
半阙折子戏 2021-02-05 06:46

I would like to see a specific commit in Beyond Compare or any other separate diff tool while viewing it via git show. I tried looking at help of git show/difftool/

相关标签:
6条回答
  • 2021-02-05 07:13

    Once you have a diff tool set up, like the awesome p4merge, you can do this:

    git diff HEAD HEAD~1
    

    Works like a charm.

    Similarly if you want to see the commit before that, you can do:

    git diff HEAD~1 HEAD~2
    
    0 讨论(0)
  • 2021-02-05 07:16

    This worked for me nicely, to show the diff of the last commit

    git difftool HEAD~ HEAD
    

    For other commits you can replace HEAD with commit hash eg:

    git difftool 1234ABCD~ 1234ABCD
    
    0 讨论(0)
  • 2021-02-05 07:20

    I managed to use git difftool to see commits that I normally used to see via git show.

    git show $commit translates to git difftool $commit^ $commit.

    The above command shows difference between commit's parent ($commit^) and commit. All this is of course after configuring Beyond Compare with difftool.

    0 讨论(0)
  • 2021-02-05 07:24

    You can also create an alias "showtool" to wrap the call to git difftool:

    set +o histexpand
    git config --global alias.showtool "!sh -c 'if [ -z \$1 ]; then REVISION="HEAD"; else REVISION="\$1"; fi; git difftool \$REVISION~ \$REVISION' -"
    

    .. then you can execute:

    git showtool 81e945b
    

    .. or just

    git showtool
    

    .. as a shortcut for git difftool 81e945b~1 81e945b to show the changes introduced in 81e945b using the configured difftool, or in the second case git difftool HEAD~1 HEAD

    0 讨论(0)
  • 2021-02-05 07:29

    Based on @javabrett answer I have created

    https://github.com/albfan/git-showtool

    to support commands like

    $ git showtool -y :/my\ commit\ message
    
    0 讨论(0)
  • 2021-02-05 07:33

    I think that git show is based on the tool set in the GIT_PAGER variable. I don't use Beyond Compare but i think that you can try something like this:

    $ GIT_PAGER='bc3' git show <whatever>
    

    Maybe you should fill the GIT_PAGER variable with some additional parameter that allows bc3 process the input.

    There are more suitable ways to persist the pager. This question can give you more tips about how to do it.

    0 讨论(0)
提交回复
热议问题