How do I sync a file at a remote location?
I am submitting a file at a certain workspace and need that file to be synced to its latest revision in a workspace that is at a remote system?
I can obviously have scheduled task on the remote machine that syncs the file in the required workspace but I wanted to check if a simpler solution is available?
I have not tried it myself but it seems the p4 sync command takes some
global options.
So you could probably have a single master sync script calling :
p4 -c <clientA> -H <remote hostA> sync #...
p4 -c <clientB> -H <remote hostB> sync #...
p4 -c <clientC> -H <remote hostC> sync #...
Related
My perforce workspace is mapped to small disk quota. I want to checkout specific perforce label/changelist to another disk different from the perforce disk since I do not have enough space.
note : I will use the checked files for a while, I do not want to perform any P4 operations on it.
Say my workspace is mapped to
//XYZ/dev/... on a disk /u/p4/...
And I want to checkout label stable_v1 to disk /u/scratch/...
How can I do this.
How to do this as well for a changelist besde the label
The easiest thing is to create a temporary workspace to perform the sync operation.
p4 -c amr-temp --field "Root=/u/scratch" --field "View=//XYZ/dev/... //amr-temp/..." client -o | p4 client -i
p4 -c amr-temp sync -p #stable_v1
p4 -c amr-temp client -d
You can replace #stable_v1 with #changelist, or #date, or any other revision specifier.
I have already created a perforce client with command:
p4 client -o -e <my_clientname>
and it gave a message created with the required user.
but while using this clientname for revert operation with command
p4 -c <my_clientname> revert <perforce_path...>
it gives me an error "Client <my_clientname> unknown - use 'client' command to create it."
Additional Info: I am working on a jenkins setup with Perforce plugin.
p4 client -o does not create your client; it simply prints out to stdout the form specification that you could have used to create your client.
To create your client, do:
`p4 client -o <my-client-name> | p4 client -i`
By the way, in your question, you wrote that you also passed the -e flag. I don't believe there is a -e flag to p4 client.
Note: I want to delete the changelist only not the client.
The answers in the following link doesn't work when the pending changelist is from an old workspace which is in an offline machine Perforce: How can I delete a changelist that p4v refuses to delete?
Tried the following command p4 -u <user> -c <client> -H <host> revert -k <file(s)>
But I'm not allowed to do as the workspace owner is different.
First get the USER and CLIENT:
p4 describe CHANGE
With a 2015.1+ server at this point you can just do:
p4 revert -c CHANGE -C CLIENT //...
p4 change -df CHANGE
With an older server it's a few more steps.
First get the HOST so you can bypass the hostname check:
p4 client -o CLIENT
Now login, revert the files, and delete the change:
p4 login USER
p4 -u USER -c CLIENT -H HOST revert -k -c CHANGE //...
p4 change -df CHANGE
I have two directories into the same workspace, I shelved some files into a changelist in the first directory and now I want to unshelve them into the second.. I tried this command:
p4 -c my_workspace unshelve -s 17654070 -n -b //my_workspace/directory2
Branch '//my_workspace/directory2'
unknown - use 'branch' command to create it.
How can I have this working?
You'll need to create a branch spec to tell the server the relationship between the two directories.
run p4 branch some_branch_name
In the view field put:
//depot/directory1/... //depot/directory2/...
Save the form and run p4 -c my_workspace unshelve -s 17654070 -n -b some_branch_name
I am trying to delete an old user from our perforce installation. A previous admin had deleted all their active workspaces / clients so we should be able to now delete the user, however when i run
p4 user -f -d auser
User auser has file(s) open on 1 client(s) and can't be deleted.
However auser no longer has any associated clients, and if I filter the pending changelist view in P4V it shows the user as having one file checked out in the default changelist but no client is specified. Even if I log in as the user I dont seem to be able to revert or do anything with the file. Any hints how I might solve this?
While both of these commands returned nothing:
$ p4 clients -u <USER>
$ p4 changes -s pending -u <USER>
This command showed me which file was open:
$ p4 opened -u <USER>
//depot/path/to/file#1 - edit default change (text) by <USER>#<CLIENT>
This command doesn't work:
$ p4 -u <USER> -H <CLIENT> revert -k //depot/path/to/file
//depot/path/to/file#1 - belongs to user <USER>, not reverted
Deleting the client does:
$ p4 client -o <CLIENT> > <CLIENT>.txt
$ p4 client -d -f <CLIENT>
$ p4 opened -u <USER>
File(s) not opened anywhere.
FTW! \o/
If you need to, you can then recreate the client with:
$ p4 client
Then read in the <CLIENT>.txt file you created with the output of p4 client -o <CLIENT> and save it.
More here:
http://answers.perforce.com/articles/KB_Article/Reverting-Another-User-s-Files
Solved.
A bit weird but this is what I did. I got the details of the default changelist that contained the file. It had the workspace name which was the name of a machine. I logged into the machine and then into perforce as the user. At this point I could see the pending changelist and revert the file. Now I can delete the user.
How did this happen?
I think what must of happened was a confusion of clients. A while back I changed the owner of quite a few clients on that machine (its the build server) and some of these clients must have had open files for the old user. This is the only explanation I can come up with.