10 lines
263 B
Bash
Executable file
10 lines
263 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
git diff $(git merge-base origin/main upstream/main)..origin/main \
|
|
--diff-filter=d \
|
|
':(exclude)README.md' \
|
|
':(exclude)build.zig' \
|
|
':(exclude).github' \
|
|
':(exclude).gitignore' \
|
|
':(exclude)stub.c'
|