2012-11-27 48 views

回答

0

喜欢本作例子:

... 
Git git = new Git(repository); 
Iterable<RevCommit> commits = git.log().all().call(); 
for (RevCommit commit : commits) { 
    ... 
} 
相关问题