r.assertLogContains("Cloning the remote Git repository", b); // GitSCM.retrieveChanges
r.assertLogContains("PRESENT: file", b);
FileUtils.touch(new File(sampleRepo, "nextfile"));
git(sampleRepo, "add", "nextfile");
git(sampleRepo, "commit", "--message=next");
b = r.assertBuildStatusSuccess(p.scheduleBuild2(0));
r.assertLogContains("Fetching changes from the remote Git repository", b); // GitSCM.retrieveChanges
r.assertLogContains("PRESENT: nextfile", b);
}
@Test public void changelogAndPolling() throws Exception {