mirror of
https://gitlab.freedesktop.org/xorg/proto/xorgproto.git
synced 2025-12-20 02:20:17 +01:00
6 lines
166 B
Bash
6 lines
166 B
Bash
#!/bin/sh
|
|
|
|
for i in `cat protos | grep -v x11proto`; do
|
|
git merge --allow-unrelated-histories $i/master --commit --no-edit -m"Merge $i"
|
|
./move-protos $i
|
|
done
|