new Git(noneBareClone).checkout().setName(branchName).call();
newCommit(original, noneBareClone, "README.md", "world", "second commit");
GitRepository.push(noneBareClone, GitRepository.getGitDirectoryURL(original), featureBranchName, featureBranchName);
// feature 브랜치에서 master 브랜치로 코드를 보낸다.
final PullRequest pullRequest = createPullRequest(original);
pullRequest.toProject = original;
pullRequest.fromProject = original;
pullRequest.toBranch = Constants.R_HEADS + Constants.MASTER;
pullRequest.fromBranch = branchName;