I have a batch file that will checkin my pending changes using tf.exe, but it checks in all pending changes. I'm trying to find a way to only checkin included pending changes in VS2015 and leave excluded files alone.
Here's what I have:
"C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\tf.exe" checkin /comment:"%*" /noprompt
I read the msdn docs but couldn't find anything related to included/excluded files.
Any suggestions?