Perforce api - Как выполнить команду "Получить последнюю версию"

Я использую 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();

Выполните команды этого "Get Latest Revision"

1 ответ

Если у вас уже есть рабочее пространство для 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
Другие вопросы по тегам