#!/usr/bin/env sh
# SPDX-License-Identifier: MIT
# ──────────────────────────────────────────────────────────────────────────────
# $source: cappysan-dotfile-scripts$
# ──────────────────────────────────────────────────────────────────────────────
#
# NAME
#      git st - default to showing current path
#
# SEE ALSO
#      git(1)
#
if test -z "${@}"; then
  exec git status .
else
  exec git status "$@"
fi
