本文整理汇总了Java中org.eclipse.jgit.api.Git.commit方法的典型用法代码示例。如果您正苦于以下问题:Java Git.commit方法的具体用法?Java Git.commit怎么用?Java Git.commit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.jgit.api.Git
的用法示例。
在下文中一共展示了Git.commit方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testJGitCheckout
import org.eclipse.jgit.api.Git; //导入方法依赖的package包/类
public void testJGitCheckout () throws Exception {
File file1 = new File(workDir, "file1");
write(file1, "blablablabla");
Git git = new Git(repository);
org.eclipse.jgit.api.AddCommand cmd = git.add();
cmd.addFilepattern("file1");
cmd.call();
org.eclipse.jgit.api.CommitCommand commitCmd = git.commit();
commitCmd.setAuthor("author", "[email protected]");
commitCmd.setMessage("commit message");
commitCmd.call();
String commitId = git.log().call().iterator().next().getId().getName();
DirCache cache = repository.lockDirCache();
try {
DirCacheCheckout checkout = new DirCacheCheckout(repository, null, cache, new RevWalk(repository).parseCommit(repository.resolve(commitId)).getTree());
checkout.checkout();
} finally {
cache.unlock();
}
}