command line - Get a file from TFS without creating workspace (Using commandline) -
i want specific file tfs server without creating workspace. found similar solution here. seems view command not working me. have tried below command.
./tf view -s:http://tfs.com:8080/tfs/wtqa '$/myproject/test.txt' > /test-view/test.txt
but says "an argument error occurred: command 'view' unknown."
this might sound obvious, have checked being run ./tf?
try
./tf /?
and ensure correctly identifies team foundation version control tool, , lists available commands, "view" being 1 of them.
you should able run
tf view -s:http://tfs.com:8080/tfs/wtqa /output:test.txt '$/myproject/test.txt'
Comments
Post a Comment