dotfiles/.local/bin/git-ready
2021-01-07 11:17:38 +01:00

5 lines
122 B
Bash
Executable file

#!/bin/sh
# Interactive rebase onto the remote
remote="$1"
test $# -gt 0 && shift
git rebase -i ${remote:-'@{push}'} "$@"