Compare commits

..

No commits in common. "90fb7b3f47fd86f1510104adeff932c1eeac655e" and "1eaa310a0f7cf310f219c6bd07998f5ac7814707" have entirely different histories.

2 changed files with 6 additions and 1 deletions

View file

@ -1,11 +1,13 @@
#!/bin/sh
if cd ~/git; then
if cd "${1:-${HOME}/Git}"; then
for repo in *; do
cd "$repo" || continue
printf '\n%s\n' "$repo"
git pull
cd ..
done
elif [ -z "$1" ]; then
exec "$0" ~/git
else
>&2 echo "Can't find your git folder!"
fi

View file

@ -0,0 +1,3 @@
#!/bin/sh
nvim +PackerUpdate +qall