func DeleteCommit(apiClient pfs.APIClient, repoName string, commitID string) error { _, err := apiClient.DeleteCommit( context.Background(), &pfs.DeleteCommitRequest{ Commit: NewCommit(repoName, commitID), }, ) return err }
func DeleteCommit(apiClient pfs.APIClient, repoName string, commitID string) error { _, err := apiClient.DeleteCommit( context.Background(), &pfs.DeleteCommitRequest{ Commit: &pfs.Commit{ Repo: &pfs.Repo{ Name: repoName, }, Id: commitID, }, }, ) return err }