Merge pull request #450 from cole-h/silence-diffs

checkout: silence diffs when checking validity of a commit
This commit is contained in:
Graham Christensen 2020-04-05 13:27:30 -04:00 committed by GitHub
commit b55535a608
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -117,6 +117,7 @@ impl CachedProjectCo {
let result = Command::new("git")
.arg("--no-pager")
.arg("show")
.arg("--no-patch")
.arg(commit)
.current_dir(self.clone_to())
.status()