15 lines
293 B
Bash
15 lines
293 B
Bash
# vim: syn=sh ts=4 sts=4 sw=4 smartindent expandtab autoindent ff=unix
|
|
|
|
if [ -n "`which pass`" ]; then
|
|
|
|
pass-push-all() {
|
|
for __pass_remote__ in $(pass git remote); do
|
|
pass git push $__pass_remote__ main
|
|
done
|
|
}
|
|
|
|
alias 'pass-pa'='pass-push-all'
|
|
alias passpa='pass-push-all'
|
|
|
|
fi
|