强制如何指挥"Get Latest Revision"



我使用Perforce Api(.net c#)作品。

源。。。

//--------Connect--------
Perforce.P4.Server server = new Perforce.P4.Server(new Perforce.P4.ServerAddress("111.222.333.444"));
        Perforce.P4.Repository rep = new Perforce.P4.Repository(server);
        Perforce.P4.Connection con = rep.Connection;
        con.UserName = "PSY";
        string password = "gangnamstyle";
        con.Client = new Perforce.P4.Client();
        Perforce.P4.Options opconnect = new Perforce.P4.Options();
        opconnect.Add("-p", password);
        con.Connect(opconnect);
        con.Login(password);

//--------How to ?--------
string ws_client = @"C:ClientPath";
string depot = "//depot/";
        Perforce.P4.P4Server p4Server = new Perforce.P4.P4Server(server.Address.Uri, con.UserName, password, ws_client);
        Perforce.P4.P4Command com = new Perforce.P4.P4Command(p4Server);

//--------Disconnect---------
con.Disconnect();

强制此"获取最新版本"的命令

如果您的计算机上已经有用于c:clientPath设置的工作区,并假设它具有名称myWorkspace(如 p4v 中"工作区"选项卡中的"工作区"列),则:

client.Name = "myWorkspace";
client.Initialize(con);
con.Client = client; // otherwise later things fail somewhat mysteriously
con.CommandTimeout = new TimeSpan(0); // otherwise the sync is likely to time out
client.SyncFiles(new Perforce.P4.Options()); // sync everything

最新更新