Pramod M
Pramod M

Reputation: 43

link to source control system p4 in redgate tools

hi i am trying to link source control to perforce in redgate tool for sql server management studio but it throws error like

Command: P4 -c C:\myworkspace_name-LT_2632\webteam\SANDBOXES\sandboxname -s sync "C:\myworkspace_name-LT_2632..."

Output: error: Client 'C:\myworkspace_name-LT_2632\webteam\SANDBOXES\sandboxname' unknown - use 'client' command to create it.

exit: 1

Upvotes: 2

Views: 159

Answers (1)

Drew Marold
Drew Marold

Reputation: 185

The -c argument to p4 specifies the name of a client workspace. As the error message indicates, you are telling it to run the sync command in a client named 'C:\myworkspace_name-LT_2632\webteam\SANDBOXES\sandboxname'. From your comment on the original question, I think you need to change myworkspace in the example to the name of the client workspace that maps the path you listed.

Upvotes: 1

Related Questions