Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/ofborg
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 91f6aee4d53c
Choose a base ref
...
head repository: NixOS/ofborg
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b55535a608ff
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 5, 2020

  1. checkout: silence diffs when checking validity of a commit

    Otherwise, when people submit treewide PRs to nixpkgs, the logs get
    cluttered with thousands of useless diffs.
    cole-h committed Apr 5, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    dtzWill Will Dietz
    Copy the full SHA
    a907ffb View commit details
  2. Merge pull request #450 from cole-h/silence-diffs

    checkout: silence diffs when checking validity of a commit
    grahamc authored Apr 5, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b55535a View commit details
Showing with 1 addition and 0 deletions.
  1. +1 −0 ofborg/src/checkout.rs
1 change: 1 addition & 0 deletions ofborg/src/checkout.rs
Original file line number Diff line number Diff line change
@@ -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()