This commit is contained in:
takezoe
2013-07-16 00:11:45 +09:00
parent 9f9148fc1f
commit aae40a7087

View File

@@ -318,7 +318,7 @@ object JGitUtil {
* @return the commit list * @return the commit list
*/ */
def getCommitLog(git: Git, from: String, to: String): List[CommitInfo] = def getCommitLog(git: Git, from: String, to: String): List[CommitInfo] =
getCommitLogFrom(git, from)(_.getName == from) getCommitLogFrom(git, to)(_.getName == from)
/** /**
* Returns the latest RevCommit of the specified path. * Returns the latest RevCommit of the specified path.