Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When creating partial builds for a project, I usually diff the project folder latest revision against a production label. Then I have to manually add all the changed/added files to a temporary folder before copying it to production.

Is there a way to automate this?

For example, if we need to update a client website, we only want to send the files that have changed. Currently, to determine the difference between their current production website and what we have in source control, we diff against two different labels on the website folder. Then we create a build with only the files that have changed.

share|improve this question
There are ways...how are you doing it currently? 'p4' commands in shell environment? – AJ. Feb 4 '10 at 14:49
Why don't you just open files for editing and adding when working with files? – Alexander Poluektov Feb 4 '10 at 14:50
I'm looking for a similar function but my intentions are different. I want to create a build list of all the used files for a solution within a report automatically. I have not been able to find such a tool. – gsirianni Feb 4 '10 at 14:53
@gsirianni - "all of the used files for a solution"...does this mean they're all in a specific path in the depot? or all labeled with the same label? or...? Ask this as a separate question on your own thread and will see if I can help. – AJ. Feb 4 '10 at 14:59
@AJ Currently, I'm using p4v and using the Folder Diff option (Tools > Diff Against...) to highlight changed/added files. I am willing to use p4 commands if it has the ability to automate this process. – Kevin Feb 4 '10 at 15:15

5 Answers

up vote 0 down vote accepted

You use the term "create a build". It sounds like that means "create a file with the things that have changed in Perforce so that we can update somewhere else".

Assuming that, you want to have a Perforce client that contains the files you want to have in production, and then use a tool like rsync to move them to the webserver. Your script basically contains "p4 sync && rsync here there". Rsync will go through the process of figuring out what is different and moving the changes.

If that isn't the case, you need to be more precise about what you mean.

share|improve this answer
I ended up creating a script which does "p4 sync //depot/folder...@labelv1" and then "p4 sync //depot/folder...@labelv2" then parsing the list of changed files and dumping them in a new folder. Thanks for pointing me in the right direction. – Kevin Feb 5 '10 at 15:56

@Kevin

You can probably skip the parsing of "p4 sync //depot/folder...@labelv2" by doing the following (*nix version):

p4 sync //depot/folder...@labelv1

# delete all files on client - but don't tell perforce about it
rm -r <root of your client> 

p4 sync //depot/folder...@labelv2

Now the client should only have the files that changed between labelv1 and labelv2. You can just copy all files from the client to your deployment location. The command below gives you a list of files:

find <root of your client> -type f
share|improve this answer

I'm not sure if I understand correctly what you are trying to do, but diffing folder and then manually adding changed/added files sure sounds like integrating (or merging, in other versioning systems' slang).

p4 help integrate on the command line will help as well as (maybe) this Perforce KB article.

share|improve this answer
Added more details to the question, hopefully that explains the goal better. – Kevin Feb 4 '10 at 18:25

Use one of the scripting APIs available for download to automate the process.

Which one you pick is largely a matter of personal taste, but if you're not especially familiar with any of the supported languages already I'd suggest the Ruby API.

share|improve this answer

If you store build products in depot, then I guess you should do the following (from beautiful book "Practical Perforce"):

Find the files that were changed and open them for editing:

p4 diff -se | p4 -x- edit

Find the files that were removed and open them for deleting:

p4 diff -sd | p4 -x- delete

Find the files that are new and open them for adding. Assuming that you're in the top-level directory of your workspace:

find . -type f | p4 -x- add -f

Having done this, you can either submit your pending changelist or continue working on your opened files.

Please ping me if you need additional explanations.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.