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

5 lines
148 B
Bash
Executable File

#!/bin/bash
git rev-parse @{upstream} >/dev/null 2>&1 ||
git branch --set-upstream-to=@{push}
git pull --rebase --autostash "$@" 2> >(head -4 >&2)