문제

in order to get list of change in specific period we use the command change

p4 changes @2001/04/01,@now 

i am using the p4api.net to get this list of changes so i have to use :

 P4Command cm1 = new P4Command(ps, "changes", true, String.Format("{0}", deppath1));

but the problem how can i specify the two options , i tried that and its not working please help me, for more help understand what i am looking for
How to find changelists submitted in the last week for a particular user using Perforce?

도움이 되었습니까?

해결책

the p4 changes doesn't work in this case when we use p4api.net :

p4 changes file.c@2010/05/01,2010/06/01 

miss a blank between file.c and @ so cm1.addArg is not working in this case because it add a space and it will not be executed

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top