#!/bin/bash
command -v git-stager &>/dev/null  || { echo "git-stager not found"; exit 255; }
export GIT_EDITOR=git-stager
git add --edit "$@"
