1
0
mirror of https://github.com/bertptrs/vimconfig.git synced 2025-12-25 20:40:32 +01:00

Pullall helper

This commit is contained in:
2025-02-06 09:22:07 +01:00
parent 97e6e79755
commit 9b03c61bf2

View File

@@ -116,6 +116,12 @@ function pasters() {
# Ensure we can make cheap copies on btrfs
alias cp='cp --reflink=auto'
function pullall() {
for repo in "$@"; do
echo "$repo"
done | xargs -P0 -I{} git -C {} pull
}
if (( $+commands[thefuck] ))
then
alias fuck='$(thefuck $(fc -ln -1))'