#!/bin/sh
set -eu

{
    git ls-files --modified --others --exclude-standard
    git diff --name-only --cached
} | sort -u
