1

Is there an option to add something to git-tfs config, so the checkin (and checkintool) command uses --no-merge flag by default.

I want to use

git tfs checkin 

instead of

git tfs checkin --no-merge
filhit
  • 2,084
  • 1
  • 21
  • 34

1 Answers1

1

I don't think you can, but did you consider making an alias and use that for checking in?

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

git tc

Anders
  • 544
  • 2
  • 8