7029444b60
Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
6 lines
104 B
Bash
Executable file
6 lines
104 B
Bash
Executable file
#!/bin/sh
|
|
|
|
for remote in $(git remote); do
|
|
git fetch -v $remote
|
|
git merge ${remote}/master
|
|
done
|