Merge branch 'main' into merge/docker
Some checks are pending
Check Nix flake / Perform Nix flake checks (ubuntu-latest) (push) Waiting to run
Check flake.lock / Check health of `flake.lock` (push) Waiting to run
Check Nix formatting / Perform Nix format checks (push) Waiting to run

This commit is contained in:
2024-11-28 13:58:26 -05:00
5 changed files with 124 additions and 55 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash
# Exit on first error and verify variables have been set/passed via CLI
set -eu
#set -eu
set -v
set -x
@ -8,6 +8,11 @@ set -x
# https://git-scm.com/docs/gitattributes#_defining_a_custom_merge_driver
base="$1"; local_="$2"; remote="$3"; merged="$4"
echo "$base"
echo "$local_"
echo "$remote"
echo "$merged"
# Resolve our default mergetool
# https://github.com/git/git/blob/v2.8.2/git-mergetool--lib.sh#L3
mergetool="$(git config --get merge.tool)"