}
@Test
public void checkout() throws IOException, GitAPIException {
// Given
Project original = createProject("keesun", "test");
PullRequest pullRequest = createPullRequest(original);
new GitRepository(original).create();
Repository repository = GitRepository.buildMergingRepository(pullRequest);
// 커밋이 없으면 HEAD도 없어서 브랜치 만들 때 에러가 발생하기 때문에 일단 하나 커밋한다.
newCommit(original, repository, "readme.md", "hello 1", "commit 1");