ungleich-learning-circle/merge.sh
Nico Schottelius 7029444b60 +merge
Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
2020-05-11 12:26:32 +02:00

6 lines
104 B
Bash
Executable file

#!/bin/sh
for remote in $(git remote); do
git fetch -v $remote
git merge ${remote}/master
done