up vote 4 down vote favorite
3
share [g+] share [fb]

How can I grab my local changelist and send it to someone else in Perforce?

link|improve this question
You'll have to be more specific. It sounds like you're wanting to send unsubmitted changes from a local pending changelist to another user's pending changelist? Is that about right? – ninesided Dec 17 '08 at 0:17
feedback

3 Answers

set P4DIFF=C:\cygwin\bin\diff.exe
p4 diff -du -c 12345 > patch-to-head.diff

# On Other machine
patch -p1 < patch-to-head.diff

I may be wrong on the env var there, and you might have to do some fixups on the diff file, but the general idea is that you generate a GNU Unified Diff, that you can send to people that can use GNU patch to apply it.

link|improve this answer
At least with server 2008.2 and 2010.1, "p4 diff" doesn't have a -c flag. I still haven't found a way to run "p4 diff" on files in a particular pending changelist. – Paul Du Bois Nov 11 '10 at 22:49
Yeah, we have a hacked up version of p4 that we use, that's why I was so unsure with the syntax - sorry :( – Paul Betts Nov 12 '10 at 17:27
You probably want both users to sync to the same changelist, but since it only applies your changes it might work anyway. – pydave Jun 10 '11 at 18:51
feedback

P4 now has native support for the shelve operation in 2009.2. Both the client and server need to be at least 2009.2 to use this.

http://blog.perforce.com/blog/?p=1872

link|improve this answer
feedback

Not sure exactly what you are trying to do, but you may also want to consider P4_Shelve. It allows you to put a load of pending changes away on a virtual shelf, and then grab them back again later. Depending on what exactly you want to achieve by sending a changelist to someone else, this could provide a part of the answer.

Linked from the P4Shelve site is P4Tar which may also be useful - this does all the packing on the client side so you just get left with a file you can send to someone else.

link|improve this answer
My answer superceded by Tim Danner's one, as Perforce now supports the shelve feature directly. – Greg Whitfield Mar 8 '11 at 15:00
feedback

Your Answer

 
or
required, but never shown

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