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

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -