Hi,
I have the following configuration of CC.Net:
<sourcecontrol type="p4">
<view>//depot/project...</view>
<executable>C:\Program Files\Perforce\p4.exe</executable>
<client>mycomputer</client>
<user>myuser</user>
<password>mypassword</password>
<port>localhost:1666</port>
<autoGetSource>true</autoGetSource>
</sourcecontrol>
When I force an update the following command is executed by CC.Net:
"p4.exe -s -c mycomputer-p localhost:1666 -u myuser-P mypassword sync"
This is a big problem because my depot is really big. Therefore it
gives me the following error from the Perforce Server:
error: Date 2008/09/04 16:15:42:
error: Operation: user-sync
error: Operation 'user-sync' failed.
error: Request too large for server memory (try later?).
Instead i would like CC.Net to created the following command:
"p4.exe -s -c mycomputer-p localhost:1666 -u myuser-P mypassword
sync //depot/project..."
I think the main problem is, that i only want to retrived updates for
parts of the depot. It may be easy, but i am new to CC.Net and
Perforce.
What did I do wrong?
BR
Brian