mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-24 07:20:01 +02:00
9 lines
69 B
Bash
9 lines
69 B
Bash
#!/bin/bash
|
|
git fetch
|
|
for i in */; do
|
|
cd $i
|
|
git fetch
|
|
cd ..
|
|
done
|
|
|