mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 08:00:06 +00:00
30 lines
719 B
Bash
Executable file
30 lines
719 B
Bash
Executable file
#!/usr/bin/zsh
|
|
|
|
emulate -L zsh
|
|
setopt err_exit no_unset pipe_fail extended_glob xtrace
|
|
|
|
: ${GITSTATUS_DIR:=${${(%):-%x}:A:h}}
|
|
: ${GITSTATUS_URL:=https://github.com/romkatv/gitstatus.git}
|
|
|
|
readonly GITSTATUS_DIR GITSTATUS_URL
|
|
readonly -a IGNORE=(pull-upstream.zsh README.md)
|
|
|
|
function pull() {
|
|
local repo && repo=$(mktemp -d ${TMPDIR:-/tmp}/gitstatus-pull-upstream.XXXXXXXXXX)
|
|
trap "rm -rf ${(q)repo}" EXIT
|
|
git clone $GITSTATUS_URL $repo
|
|
|
|
local dst
|
|
for dst in $GITSTATUS_DIR/**/*(.,@); do
|
|
local f=${dst#$GITSTATUS_DIR/}
|
|
(( ! ${IGNORE[(I)$f]} )) || continue
|
|
local src=$repo/$f
|
|
[[ -f $src ]] && {
|
|
mkdir -p ${dst:h} && cp -f $src $dst || return
|
|
} || {
|
|
rm $dst
|
|
}
|
|
done
|
|
}
|
|
|
|
pull
|