Tagged Questions

Perforce is a commercial, proprietary, centralized revision control system.

learn more… | top users | synonyms (1)

36
votes
2answers
7k views

What is the difference between “Rollback…” and “Back Out Submitted Changelist #####” in Perforce P4V

I want to reverse the changes from one of my checkins. In the right-click context menu of the particular changelist, there are these two options: Rollback... Back Out Submitted Changelist What is ...
36
votes
9answers
10k views

Can you “ignore” a file in Perforce?

I sometimes use the feature 'Reconcile Offline Work...' found in Perforce's P4V IDE to sync up any files that I have been working on while disconnected from the P4 depot. It launches another window ...
34
votes
13answers
10k views

What are the benefits of using Perforce instead of Subversion?

My team has been using SVN for a few years. We now have the option of switching to Perforce. What would be the benefits (and pitfalls) of making such a switch?
30
votes
13answers
15k views

GIT vs. Perforce- Two VCS will enter… one will leave

So I'm in the process of getting GIT sold at work. First thing I need is to convince everyone that GIT is better at what they're already used to doing. We currently use Perforce. Anybody else go ...
29
votes
6answers
5k views

Finding untracked files in a Perforce tree

Anybody have a script or alias to find untracked (really: unadded) files in a Perforce tree? EDIT: I updated the accepted answer on this one since it looks like P4V added support for this in the ...
28
votes
2answers
15k views

How to delete a workspace in perforce (using p4v)?

I'm new to perforce and have created a few workspaces as exercises for getting familiar with it. Now I would like to delete some of the workspaces. I just want to get rid of the workspaces so that ...
28
votes
7answers
8k 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 into ...
26
votes
7answers
14k views

How does Visual Studio's source control integration work with Perforce?

We're using Perforce and Visual Studio. Whenever we create a branch, some projects will not be bound to source control unless we use "Open from Source Control", but other projects work regardless. ...
24
votes
4answers
2k views

Git for Perforce users

I've been using Perforce for a number of years. I'd like to switch to using git for my personal code, but all of the git tutorials that I've seen either assume that you'e a complete source control ...
19
votes
6answers
5k views

How to use p4merge as the merge/diff tool for Mercurial?

Does anyone know how to setup Mercurial to use p4merge as the merge/diff tool on OS X 10.5?
18
votes
3answers
3k views

Perforce blame

Is there an equivalent of svn's blame for Perforce on the command line? p4 annotate doesn't display usernames -- only changeset numbers (without ancestor history!). I currently have to track code ...
17
votes
4answers
4k views

How do I display a particular changelist number in p4v?

When viewing submitted changelists in p4v, is there a way to display a particular changelist number? That is, how I do the equivalent of p4 describe in p4v? Can I filter for a particular changelist ...
17
votes
8answers
5k views

How do you search the text of changelist descriptions in Perforce?

On occasion, I find myself wanting to search the text of changelist descriptions in Perforce. There doesn't appear to be a way to do this in P4V. I can do it by redirecting the output of the changes ...
15
votes
6answers
1k views

Perforce for a Subversion user?

I've just changed jobs. My previous employer uses Subversion, my new employer uses Perforce. Are there any resources out there that'll help me, as a user, change my mental model from a Subversion one ...
14
votes
3answers
5k views

Can someone explain the perforce integration options?

Specifically: Why do I need to explicitly enable "Enable baseless merges" all the time? I am integrating from my branch to the trunk. What does "Enable integrate over deleted targets" mean? ...
13
votes
9answers
2k views

What are the advantages to Perforce?

What are the benefits of Perforce? I'd love to have some insight as to how Perforce can work better in a given situation than, say, svn. If you have experience with both perforce and svn and you ...
12
votes
3answers
4k views

What is a Perforce “shelved” file?

In Perforce, what is a "shelved" file? What is the purpose of shelving a file that is open for edit in the workspace?
12
votes
11answers
1k views

Is Perforce worth it?

A colleague of mine has become excited about the possibilities with PerForce (we basically need an abillity to logistically group patches and changes, and having the SCM support this natively would be ...
12
votes
6answers
3k views

Is Git recommended for large (>250GB) content repositories

The web-application is a custom-built CMS which has several sub-applications and each one of them has code and content residing in the same directory structure. Due to the application framework's ...
12
votes
3answers
6k views

In Perforce, how do I get a list of checked out files?

How do I get a list of the files checked out by users (including the usernames) using P4V or P4? I want to provide a location and see a list of any files under that location (including sub folders) ...
11
votes
5answers
2k views

Issues using perforce command line under cygwin

So, virtually cannot use the the perforce command line for anything other than syncing. My workspace root is mapped to C:\ Here's a line of my client spec: //claims1.0/main/... ...
11
votes
5answers
3k views

How do I get diffs of all the files in a pending Perforce changelist?

I want to get diffs on files in a specific pending changelist. I wish I could do this: p4 diff -c 999 Can someone help me string together some csh magic to make this happen? Maybe take the output ...
10
votes
3answers
145 views

How to join two files in a version control system

I am doing a refactoring of my C++ project containing many source files. The current refactoring step includes joining two files (say, x.cpp and y.cpp) into a bigger one (say, xy.cpp) with some code ...
10
votes
3answers
779 views

Perforce Dev Branches - Sparse Branching vs. Private Branching

I'm looking for some feedback on the advantages and disadvantages of the methods available for creating individual development branches in a Perforce depot. If I understand correctly, there are two ...
10
votes
4answers
2k views

Detecting Perforce unopened modified files

I'm trying to figure out a way to detect files that are not opened for editing but have nevertheless been modified locally. p4 fstat returns a value headModTime for any given file, but this is the ...
10
votes
6answers
4k views

How do I check out a file from perforce in python?

I would like to write some scripts in python that do some automated changes to source code. If the script determines it needs to change the file I would like to first check it out of perforce. I don't ...
10
votes
4answers
4k views

Good tool for drawing SCM code branch diagrams

Does anyone know a good tool for drawing SCM codeline diagrams? Currently we tend to do this using anything at hand e.g. PowerPoint, Visio, Paint Shop Pro, etc. It's a pity Visio doesn't include a ...
9
votes
7answers
524 views

Handling multiple changesets in source control systems

I have a fairly infrequent problem occuring with source control. In the example here the problem was occuring with Perforce, but I suspect the same problem will occur with many SCMs, especially ...
8
votes
3answers
2k views

How to do a fast and safe sync on perforce?

If you do a sync in perforce it can happen, very often, to do nothing even if it should. If you do a forced sync (sync -f) it will definitely sync all the files from the server blindly and this is ...
8
votes
3answers
4k views

Perforce - getting email on every checkin

Is there a way to get Perforce to send you an email on every check to a particular depository?
7
votes
2answers
954 views

How do I configure BeyondCompare to ignore SCM replaced text in comments?

I do have some text sequences that are replaced by the SCM (Perforce in my case). I do want to configure BeyondCompare to consider these sequences as unimportant differences in order to be able to ...
7
votes
4answers
829 views

So which is better, using git-p4 or just sliding a .git directory into the working directory and having perforce ignore it?

I know this has come up before, but there was little in the way of day to day personal experiences in the posts I saw. Only a couple of responses. I'd love to hear from people that use git-p4, or have ...
7
votes
1answer
914 views

Public Perforce Open Source Repositories?

While there are many open source repositories using CVS, SVN, and git, I'd like to know if there are any built atop Perforce, as I've been happily using that for CM at home for many years now. ...
7
votes
6answers
2k views

How do I prevent a subversion user accessing part of the repository?

I'm using a Subversion repository hosted on Dreamhost for a project. I would like to allow access to some users on a restricted basis. At the very least I would like to allow read-only access to some ...
7
votes
3answers
2k views

How to convert Perforce depot locations to client view locations

I'd like to know how to convert Perforce depot locations to client view locations for the purpose of script writing. I have a script that first checks out a file for edit in perforce and then ...
7
votes
2answers
1k views

Is there a way to delete in perforce without syncing to your client?

I often accidentally create a branch that contains more code than it needs to. When that happens, I delete the branch files, the branch tag, and then start over. The thing that stinks is having to ...
6
votes
1answer
149 views

Perforce API for Python 2.7

Just wondering if anyone knows of a Python 2.7 compliant Perforce API build. On their FTP site they have only up to Python 2.6. It explains in the README how to build it for other versions of Python, ...
6
votes
3answers
497 views

Value of using Git with ClearCase, AccuRev or Perforce?

I am interested in the value (or lack thereof) of using a traditional SCM product (ClearCase, AccuRev, Perforce, etc.) along with Git for large projects with distributed teams. Is there a significant ...
6
votes
4answers
223 views

How can I set up Git for local commits while using P4 for remote commits?

Where I work uses a Perforce environment but we are not allowed to check in until our features are completed and ready to be tested. I need to be able to do local commits because at times I have had ...
6
votes
3answers
788 views

Migrating from git to Perforce

I have the task of migrating my team & source from git to Perforce, and I'm looking for ideas on how to move the git history into p4. I would be happy moving master branch only. However, even ...
6
votes
2answers
280 views

Need a Perforce DVCS recommendation: git-p4, hg Perfarce, or Something Else?

We're getting migrated from Subversion to Perforce at work. I've been using git-svn and it's kept me very productive. I want to keep using a DVCS for my own development. Which works best with ...
6
votes
1answer
130 views

How to make a project “repository/team” ready

I have been working solo on a project for some time, and now, new developers are likely to join the project for various reasons. I, of course, use a version control software but I am afraid importing ...
6
votes
2answers
1k views

IntelliJ community Perforce plug-in

I used to love using IntelliJ but my new company doesn't spend money on IDEs. Now with the release of IntelliJ Community Edition, the only obstacle I have is that my company uses Perforce. Does ...
6
votes
3answers
719 views

Local commits pushing to a central server

At work we use perforce and are encouraged to make regular commits to it (something I am fine with). However, I'd like to run something like mercurial so I can locally commit stuff that is work in ...
6
votes
3answers
976 views

How to remove untracked files from a Perforce working tree?

What's the equivalent of "git clean" with Perforce?
6
votes
6answers
1k views

Recommend portable source control setup?

Since I have a couple of mid-sized personal projects and a lots of code snippets, sample programs, libraries which usage is demonstrated using unit tests, I want to have this whole lump of code ...
6
votes
4answers
2k views

In Perforce, can you rename a folder to the same name but cased differently?

Can I rename a folder in Perforce from //depot/FooBar/ to //depot/Foobar/? I've tried this by renaming from //depot/FooBar/ to //depot/Temp/ to //Depot/Foobar/ but the end result ends up the same as ...
6
votes
5answers
1k views

Can I safely edit a renamed file in perforce

I have a file I need to move that's already under perforce. Once moved it needs some editing - update the package, etc - appropriate to its new location. Should I submit the move changespec and then ...
6
votes
9answers
1k views

Perforce in a Microsoft Shop

Our dev shop currently uses Visual SourceSafe. We all know how that could end up (badly), so we're investigating other systems. First up is Perforce. Does anyone have experience with using it and its ...
5
votes
3answers
225 views

Is there a bi-directional bridge between p4 and git?

Is there a good (reliable and automated) method for moving git changes between perforce and git for multiple users? git-p4 seems to handle the single user case well but I'm looking for a multi user ...

1 2 3 4 5 13