8
votes
7answers
1k views
Determining the last changelist synced to in Perforce
A question that occasionally arises is what is the best way to determine the changelist that you last synced to in Perforce. This is often needed for things like injecting the changelist number int …
3
votes
Finding untracked files in a Perforce tree
Alternatively from P4Win, use the ""Local Files not in Depot" option on the left hand view panel.
I don't use P4V much, but I think the equivalent is to select "Hide Local Workspace Files" …
0
votes
Perforce in a Microsoft Shop
I've used personally and managed a number of teams for a few years who have been doing Perforce & Visual Studio. It works perfectly well. There can be a couple of binding/rebinding gotchas, but …
6
votes
Determining the last changelist synced to in Perforce
Just to answer this myself in keeping with Jeff's suggestion of using Stackoverflow as a place to keep technical snippets....
From the command line use:
p4 changes -m1 @< …
0
votes
Determining the last changelist synced to in Perforce
Erickson - nice suggestion, but I think it covers a slightly different set of circumstances than the answer I provided. Certainly counter will work if you are likely to only have the head revision, …
0
votes
Can I safely edit a renamed file in perforce
Yes you can. Simply reopen for edit the branched file (i.e. the new one). In P4Win, there is a context menu for this ("re-open for edit").
…
1
vote
In Perforce, how do I get a list of checked out files?
Seeing as you also asked about P4V and only had command line answers so far, here's what you do for P4V. The "Pending" pane gets you part way to what you want. Ensure the "User" and "Workspace" fil …
4
votes
In Perforce, can you rename a folder to the same name but cased differently?
Once it is in Perforce, the case remains set. As mentioned by Johan you can obliterate, set the name up correctly, and add it in again. However, there is a slight gotcha....
If anyone else …
0
votes
What is the more efficient version control methodology: checkout or merge?
I don't really get the question, to be honest. But I can vouch for Perforce's efficiency and ability to handle more than one person modifying a file asnychronously, and handling the merging of edit …
2
votes
Perforce repository monitor for Windows
stimms answer will certainly do exactly as you ask.
But if you want to go a little further an alternative would be to use the P4 Review mechanism, where you can get Perforce to send you an …
1
vote
Weird results using P4COM
Could it be a backslash issue in the command string? This would work fine at the command line, but a single backslash may be being interpreted as an escape code by whatever language compiler you ar …
3
votes
What are the benefits of using Perforce instead of Subversion?
On the Perforce website they have a paper comparing the two:
P4 vs SVN
Obviously, given the …
1
vote
In Perforce, what is the command to connect to a different port when switching client user?
If you want to do it generically for any P4 command then the general form can be found via "p4 help usage".
In a nutshell,
p4 -p <your port> login
w …
4
votes
Is there an easy way to revert an entire P4 changelist?
The posted answers provide correct answers, but note also that there is an actual menu option in P4V to do this for you now. It's in the latest 2008.2 Beta, and so should be officially released the …
2
votes
How do you search the text of changelist descriptions in Perforce?
There is another alternative using P4Win. When the submitted changelist pane has focus, a CTRL+F lets you do an arbitrary text search, which includes changelist descriptions.
The only limit …
