dotfiles/.local/bin/git-ready
2020-12-12 16:51:14 +01:00

5 lines
105 B
Bash
Executable file

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