* @param repo Repository
*/
RtRepoCommits(final Request req, final Repo repo) {
this.entry = req;
this.owner = repo;
final RequestURI rep = req.uri()
.path("/repos")
.path(repo.coordinates().user())
.path(repo.coordinates().repo());
this.request = rep
.path("/commits")
.back();
this.comp = rep
.path("/compare")
.back();
}