Compare commits
3 Commits
e42d9ba749
...
0b540e1ac3
| Author | SHA1 | Date | |
|---|---|---|---|
| 0b540e1ac3 | |||
| fa5d034a83 | |||
| 3ee3bb092d |
@@ -16,7 +16,7 @@ $color_white = rgb(FFFFFF)
|
|||||||
### MONITORS ###
|
### MONITORS ###
|
||||||
################
|
################
|
||||||
|
|
||||||
monitor=,preferred,auto,1
|
monitor=,preferred,auto,1.33
|
||||||
|
|
||||||
|
|
||||||
###################
|
###################
|
||||||
|
|||||||
10
sh/pull_all
Executable file
10
sh/pull_all
Executable file
@@ -0,0 +1,10 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
for dir in */; do
|
||||||
|
if [ -d "$dir/.git" ]; then
|
||||||
|
echo "Pulling in $dir..."
|
||||||
|
git -C "$dir" pull
|
||||||
|
echo ""
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
Reference in New Issue
Block a user