Tags: #git
Links: [[BeyondCompare]]
# Use BeyondCompare for Git Diff Tool
Run this at git bash:
```bash
git config --global diff.tool bc
git config --global difftool.bc.path "C:/Program Files/Beyond Compare 4/bcomp.exe"
```
Then you can do this:
```bash
git difftool --no-prompt branch-name other-branch-name -- path/to/file.ext
```
You can also add this to your git aliases to make things nicer:
```bash
dif = difftool --no-prompt
```
Then you can do something like:
```bash
git dif branch-name other-branch-name -- path/to/file.ext
```