Reputation: 149
I have configured Beyond Compare as difftool
.
When I run $ git difftool
, it opens all the diff files in BC, but sequentially i.e. the first diff file opens, which I have to close so that the next one opens, and so on.
When the file count is too large, I need to keep repeating this for each file. Is there any way to -
$
prompt? ORUpvotes: 3
Views: 416
Reputation: 205
Use the parameter --dir-diff this will open up all changes in Bcompare at once. Additionally you can create an alias in your .gitconfig e.g.
git config --global alias.bcompare 'difftool --dir-diff'
then you save some console typing effort :-)
Upvotes: 3