Reputation: 2971
Yes, the company i'm working for is still using perforce. Workspace is a set of files in local. But what's the relationship between p4 client and workspace pls ?
Upvotes: 3
Views: 1735
Reputation: 71464
They're essentially synonyms. "Client" is usually shorthand for "client workspace". Which is the only kind of workspace there is. So "client" = "workspace".
Related concepts include:
noclobber
and rmdir
that affect how you sync filesIf someone says just "client" or "workspace", they could be talking about the "workspace" as an aggregation of all of the above data, or they could be talking about the local files, or they could be talking about the client spec. Sometimes it might even be the client application (e.g. P4V, P4, or whatever you use to talk to the server and manage your workspace). It's usually pretty obvious from context.
Typically, P4V uses the term "workspace" whereas the command line client application (and the server API, which the CLI is a thin wrapper around) uses the term "client".
Upvotes: 8