ohmyksh/extensions/got.ksh

36 lines
846 B
Bash
Raw Normal View History

2020-07-29 08:01:27 -06:00
#!/bin/ksh
# Thanks to jrick for this one:
# https://gist.github.com/jrick/d47e1be98609401e86ba0bd6bfbfc8fe
function got-push {
local p="$PWD"
while [ ! -e "$p/.got/repository" ]; do
if [ "$p" = "/" ]; then
echo "$PWD: not a got checkout" 1>&2
return 1
fi
p=$(dirname "$p")
done
local r
read r < "$p/.got/repository"
2020-08-06 07:08:02 -06:00
(cd "$r" && git push "$@")
2020-07-29 08:01:27 -06:00
}
2020-08-06 07:08:02 -06:00
2020-08-24 08:54:37 -06:00
function got-sync {
local _remote
_remote=$1
[ -z $_remote ] && _remote="origin"
got fetch "$_remote" && got update -b "$_remote/master" && \
got rebase master
}
2020-08-16 07:58:33 -06:00
function __got_ps1 {
local _format _branch _status
_format=$1
_branch=$(got branch 2>/dev/null | grep -v conf_set_now)
_status=$?
if [ $_status == 0 ]; then
printf "$_format" $_branch
fi
}