Perforce 2003.2 User's Guide
<< Previous Chapter
Perforce Basics:
Resolving File Conflicts

Table of Contents
Index
Perforce on the Web
Next Chapter >>
Changelists

Chapter 6
Perforce Basics:
Miscellaneous Topics

The manual thus far has provided an introduction to the basic functionality provided by Perforce, and subsequent chapters cover the more advanced features. In between are a host of other, smaller facilities; this chapter covers these topics. Included here is information on the following:

Reconfiguring the Perforce Environment with $P4CONFIG

Some Perforce users have multiple client workspaces, each of which may connect to a different port. There are three ways of changing your Perforce environment on the fly:

P4CONFIG names a file (for example, .p4env) that is used to store variable settings. Whenever a Perforce command is executed, the current working directory and its parent directories are searched for a file with the name stored in P4CONFIG. If a file with that name is found, the values of P4PORT, P4CLIENT, and so on, are read from that file. If no file of the given name is found, the current values of the Perforce environment variables are used.

Each variable setting in the file stands alone on a line and must be in the form:

Values that can be stored in the P4CONFIG file are:

P4CLIENT

P4DIFF

P4EDITOR

P4USER

P4CHARSET

P4PORT

P4MERGE

P4PASSWD

P4HOST

P4LANGUAGE

The values found in the file specified by P4CONFIG override any environment or registry variables that have been set. Command-line flags (discussed in the next section) override the values found in the P4CONFIG file.

P4CONFIG automates the process of changing the Perforce environment variables, as new settings take effect whenever you switch your current working directory from one client workspace directory to another. If you use multiple client workspaces, this is a very useful feature.

Perforce Passwords

By default, any user can assume the identity of any other Perforce user by setting the value of P4USER to a different username, by using the -u flag with the p4 command, or by setting the value of P4USER configuration within the file described by P4CONFIG. Although this makes it easy to perform tasks for other users when necessary, it can also lead to security problems.

To prevent another user from impersonating you within Perforce, use the p4 passwd command. No one, including the user who set the password, will be able to use any p4 command without providing the password to Perforce. You can provide this password to Perforce in one of three ways:

  1. Set the value of the environment or registry variable P4PASSWD to the correct password.

  2. Use the -P password flag between p4 and the actual command when giving a Perforce command (for instance, p4 -P eds_password submit).

  3. Set the value of P4PASSWD within the file described by P4CONFIG.

For security's sake, the password should always be set while logged onto the server.

Be careful when setting passwords. Once you have set your Perforce password with p4 user, there is no way for you to use Perforce if you forget their password and the value of P4PASSWD has not been properly set. If this happens, the Perforce superuser will have to reset or remove your password.

Note

Passwords can also be created, changed, and deleted within the p4 user form.

If you need to have your password reset, contact your Perforce administrator. If you are a Perforce administrator, consult the Perforce System Administrator's Guide for information on resetting passwords and other common user-related tasks.

Command-Line Flags Common to All Perforce Commands

Some flags are available for use with all Perforce commands. These flags are given between the system command p4 and the command argument taken by p4. The flags are as follows:

Flag
Meaning
Example

-c clientname

Runs the command on the specified client. Overrides the P4CLIENT environment variable.

p4 -c joe edit //depot/file.c

Opens file file.c for editing under client workspace joe.

-C charset

For servers in unicode mode, override the P4CHARSET variable.

p4 -C utf8 print //depot/file

-d directory

Specifies the current directory, overriding the environment variable PWD.

p4 -d ~elm/src edit one two

Opens files one and two for edit; these files are found relative to ~elm/src.

-G

Cause all output (and batch input for form commands using the -i option) to be formatted as marshalled Python dictionary objects

p4 -G info

-H host

Specify the host name, overriding the environment variable P4HOST.

p4 -H host print //depot/file

-L language

For servers with non-English error messages, override the P4LANGUAGE variable.

Reserved for system integrators.

-p server

Gives the Perforce server's listening address, overriding P4PORT.

p4 -p mama:1818 clients

Reports a list of clients on the server on host mama, port 1818.

-P password

Supplies a Perforce password, overriding the value of P4PASSWD. Usually used in combination with the -u user flag.

p4 -u ida -P idas_pw job

Create a new job as user ida, using ida's Perforce password.

-s

Prepend a tag to each line of output so as to make output more amenable to scripting.

p4 -s info

-u username

Specifies a Perforce user, overriding the P4USER environment variable.

The user may run only those commands to which he or she has access.

p4 -u bill user

Presents the p4 user form to edit the specification for user bill. The command works without the -P flag only if bill has not set a Perforce password.

-x filename

Instructs p4 to read arguments, one per line, from the named file.

See "Working Detached" on page 81.

-V

Displays the version of the p4 executable.

p4 -V

All Perforce commands can take these flags, even commands for which these flag usages are useless (for instance, p4 -u bill -d /usr/joe help). Other flags are available as well; these additional flags are command dependent. See the Perforce Command Reference or use p4 help commandname to see the flags for each command.

Working Detached

Under normal circumstances, you work in your client workspace with a functioning network connection to a Perforce server. As you edit files, you announce your intentions to the server with p4 edit, and the server responds by noting the edit in the depot's metadata, and by unlocking the file in your client workspace. However, it is not always possible you to have a network connection to be present, and you may need a method for working entirely detached from the server.

The scheme is as follows:

Finding changed files with "p4 diff"

Use the p4 diff reporting command to compare a file in the client workspace with the corresponding file in the depot. The behavior of p4 diff can be modified with two flags:

"p4 diff" Variation
Meaning

p4 diff -se

Tells the names of unopened files that are present on the client, but whose contents are different than the files last taken by the client with p4 sync. These files are candidates for p4 edit.

p4 diff -sd

Reports the names of unopened files missing from the client. These files are candidates for p4 delete.

Note

You can use p4 edit on any file, even files you don't want to edit; this command gives the local file write permissions, but does not otherwise alter it.

Using "p4 diff" to update the depot

The p4 diff variations described above can be used in combination with the -x flag to bring the state of the depot in sync with the changes made to the client workspace.

To open changed files for edit after working detached, use:

p4 diff -se > CHANGED_FILES
p4 -x CHANGED_FILES edit

To delete files from the depot that were removed from the client workspace, use:

p4 diff -sd > DEL_FILES
p4 -x DEL_FILES delete

As always, your edit and delete requests are stored in changelists, which Perforce does not process until you type p4 submit.

Refreshing files

The process of syncing a depot with a formerly detached client workspace has a converse: Perforce can get confused about the contents of a client workspace if you accidentally use the local OS file deletion command.

For example, suppose that you accidentally delete a client workspace file via the UNIX rm command, and that the file is one that you wanted to keep. Even after a submit, p4 have will still list the file as being present in the workspace.

In such a situation, you can use p4 sync -f files to bring the client workspace in sync with the files the depot thinks you have. This command is mostly a recovery tool for bringing the client workspace back into sync with the depot after accidentally removing or damaging files managed by Perforce.

Recommendations for Organizing the Depot

The default view brought up by p4 client maps the entire depot to the entire client workspace. If the client workspace is named eds_elm, the default view looks like this:

This is the easiest mapping, and can be used for the most simple Perforce depots, but mapping the entire depot to the workspace can lead to problems later on. Suppose your server currently stores files for only one project, but another project is added later: everyone who has a client workspace mapped as above will wind up receiving all the files from both projects into their workspaces. Additionally, the default workspace view does not facilitate branch creation.

The safest way to organize the depot, even from the start, is to create one subdirectory per project within the depot. For example, if your company is working on three projects named zeus, athena, and apollo, three subtrees might be created within the depot: //depot/zeus, //depot/athena, and //depot/apollo. If Joe is working on the zeus project, his mapping might look like this:

//depot/zeus/...    //joe/...

And Sarah, who's working on the athena and apollo projects, might set up her client workspace as:

//depot/athena/...    //sarah/athena/...
//depot/apollo/...   //sarah/apollo/...

This sort of organization can be easily extended to as many projects and branches as are needed.

Another way of solving the same problem is to have the Perforce system administrator create one depot for each project or branch. See the Perforce System Administrator's Guide for details about setting up multiple depots.

Renaming Files

Although Perforce doesn't have a rename command, you can rename files by using p4 integrate to copy the file from one location in the depot to another, deleting the file from the original location, and then submitting the changelist that includes the integrate and the delete. The process is as follows:

p4 integrate from_files to_files
p4 delete from_files
p4 submit

The from_file is moved to the directory and renamed according to the to_file specifier. For example, if from_file is d1/one and to_file is d2/two, then one is moved to the d2 directory, and is renamed two. The from_file and to_file specifiers may include wildcards, as long as they are matched on both sides. Perforce write access (explained in the Perforce System Administrator's Guide) is needed on all the specified files.

Revision histories and renamed files

When you rename a file (or move it from one directory to another) with p4 integrate, you create the new file by creating an integration record that links it to its deleted predecessor.

As a result, if you run p4 changes newfile, you'll see only changes to newfile. Only changes that have taken place after the renaming will be listed:

$ p4 changes newfile.c
Change 4 on 2000/10/24 by user@client 'Latest bugfix'
Change 3 on 2000/10/23 by user@client 'Renamed file'

In order to see the full history of changes to the file (including changes made before the file was renamed or moved), you must specify the -i (include changes from integrations) flag to p4 changes, as follows:

$ p4 changes -i newfile.c
Change 4 on 2000/10/24 by user@client 'Latest bugfix'
Change 3 on 2000/10/23 by user@client 'Renamed file'
Change 2 on 2000/10/21 by user@client 'second version'
change 1 on 2000/10/20 by user@client 'initial check-in'

Specifying the -i flag tells p4 changes to trace back through the integration records and retrieve all change information, regardless of how many times the file (or the directory in which it lives) has been renamed or moved.


Perforce 2003.2 User's Guide
<< Previous Chapter
Perforce Basics:
Resolving File Conflicts

Table of Contents
Index
Perforce on the Web
Next Chapter >>
Changelists
Please send comments and questions about this manual to [email protected].
Copyright 1997-2003 Perforce Software. All rights reserved.
Last updated: 12/12/03