dotfiles

A steaming hot pile of sh...ell scripts and configuration files.
git clone https://kaka.farm/~git/dotfiles
Log | Files | Refs

git-pushall (140B)


      1 #!/bin/sh
      2 
      3 if [ -z "$(command -v xargs)" ]; then
      4     printf "No xargs command!"
      5     exit 1
      6 fi
      7 
      8 git remote | xargs -P 0 -l git push --all -v