public ActionResult CommitHistory(string commitUrl, int?page)
        {
            if (!string.IsNullOrEmpty(commitUrl))
            {
                return(View(_iCommitService.GetCommitHistory(commitUrl, page)));
            }

            return(View(new GitHubCommitHistoryCollection()));
        }