这是我第一次使用 kdiff3 合并工具。
我正在使用mac os,所以我使用下面的手册安装了带有自制软件的kdiff3。
http://www.ryanwright.me/cookbook/mac/homebrew/kdiff3
我在 .gitconfig 中添加了 merge.tool kdiff3
git config --global merge.tool kdiff3
我也添加了
[diff]
tool = kdiff3
kdiff3 使用该命令成功打开。
git mergetool
但问题是,当我检查状态时,
git status
产生了未知的未跟踪文件
Unmerged paths:
(use "git add <file>..." to mark resolution)
both modified: t1.c
Untracked files:
(use "git add <file>..." to include in what will be committed)
t1_BACKUP_47497.c
t1_BASE_47497.c
t1_LOCAL_47497.c
t1_REMOTE_47497.c
我无法弄清楚那些未跟踪的文件是什么。
有没有办法解决这个问题?