command line - tf.exe checkin does not find any pending changes -
i'm trying simple tfs 2015 checkin automation. have local workspace mapped local folder. in folder, added files , deleted one. want checkin changes
i run command
tf.exe checkin <folder> /recursive
the result (unexpected) "no pending changes"
if run following command
tx.exe status <folder>
i list of changes expected.
if in visual studio source code explorer, cannot see changes if try add items in tfs folder, can see new files.
can me understand how can automate checkin scenario?
edit : based on so thread, seems not possible achieve local workspace. can confirm?
you need run "tf add" command add these files pending changes before run "tf checkin" command:
tf add * /recursive
Comments
Post a Comment