dotfiles/bin/git_set_upstream
2020-11-22 23:33:57 -05:00

13 lines
263 B
Bash
Executable File

#!/bin/bash
# Copied from David Pedersen: https://github.com/davidpdrsn/dotfiles/blob/master/bin/git-pp
set -e
function git_branch_name {
val=`git branch 2>/dev/null | grep '^*' | colrm 1 2`
echo "$val"
}
git push --set-upstream origin $(git_branch_name)