7 lines
104 B
Bash
7 lines
104 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
for remote in $(git remote); do
|
||
|
git fetch -v $remote
|
||
|
git merge ${remote}/master
|
||
|
done
|