8 lines
163 B
Bash
Executable file
8 lines
163 B
Bash
Executable file
#! /usr/bin/env bash
|
|
|
|
function main {
|
|
local branch="$(git rev-parse --abbrev-ref HEAD)"
|
|
git branch --set-upstream-to="origin/$branch" "$branch"
|
|
}
|
|
|
|
main $1
|