13 lines
271 B
Bash
Executable file
13 lines
271 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
MAIN_BRANCH="master"
|
|
CUR_BRANCH="$(git branch | grep '\*' | cut -d ' ' -f2-)"
|
|
if [[ -n ${2+x} ]]; then
|
|
MAIN_BRANCH="$2"
|
|
CUR_BRANCH="$1"
|
|
elif [[ -n ${1+x} ]]; then
|
|
MAIN_BRANCH="$1"
|
|
fi
|
|
|
|
git rebase -i "$(git merge-base "$CUR_BRANCH" "$MAIN_BRANCH")"
|