public ActionResult CommitForSingleFile(
            string Username,
            string RepositoryName,
            string Sha)
        {
            var commit = BaseAPI.CommitForSingleFile(
                Username,
                RepositoryName,
                Sha);

            return(View("Commit", GetBaseView(commit)));
        }