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