dotfiles/.local/bin/scripts/git-p

6 lines
115 B
Bash
Executable File

#!/bin/sh
if git rev-parse @{upstream} >/dev/null 2>&1
then git push "$@"
else git push --set-upstream "$@"
fi