git-tfs 签入的配置选项默认使用 --no-merge

Config option for git-tfs checkin to use --no-merge by default

是否有向 git-tfs 配置添加内容的选项,因此 checkin(和 checkintool)命令默认使用 --no-merge 标志。

我想用

git tfs checkin 

而不是

git tfs checkin --no-merge

我认为你做不到,但你是否考虑过创建一个别名并将其用于签到?

git config --global alias.tc "tfs checkin --no-merge"

git tc