Files
dotfiles/scripts/shell/job/pull-repo-references.sh
2024-03-28 13:26:01 -03:00

14 lines
186 B
Bash
Executable File

#!/bin/bash
cur_dir=`pwd`
dirs=`find * -maxdepth 0 -type d`
for d in ${dirs[@]}; do
if [ $d = "code" ]; then
continue
fi
cd $cur_dir/$d
git pull --rebase
done