add gitfetches, quick vim updates
This commit is contained in:
parent
7dae6ee474
commit
fd5aabf97f
15
local/bin/gitfetcher
Executable file
15
local/bin/gitfetcher
Executable file
@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
wd="$(pwd)"
|
||||
temp="$(mktemp)"
|
||||
|
||||
find /data -name '.git' -exec dirname \{\} \; | while read gitrepo; do
|
||||
cd "$gitrepo"
|
||||
echo "$gitrepo"
|
||||
|
||||
git remote | while read remote; do
|
||||
git fetch --prune "$remote"
|
||||
done 2>&1 | sed 's/^/ /'
|
||||
done
|
||||
|
||||
cd "$wd"
|
Loading…
Reference in New Issue
Block a user