blob: b77d8eabe4ab3ff3479f0f05ec3b001dc36182f3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
for dir ; do
git -C "$dir" checkout master
git -C "$dir" pull upstream master
git -C "$dir" push
git -C "$dir" checkout fly
git -C "$dir" merge --no-edit master
git -C "$dir" push
done
|