I can't found PullCommand implement in gitsharp,but,I found a FetchCommand.
now,I write the following code to perform FetchCommand. but not any effect.
var rep= GitHelper.OpenRepository(ENV.GitDBLocation);
FetchCommand f = new FetchCommand();
f.Repository = rep;
f.Execute();
Could you tell me how can I get remote git code? thanks !