diff options
author | Keith Packard <keithp@keithp.com> | 2017-12-13 15:48:10 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2017-12-13 15:48:10 -0800 |
commit | 80ceb11c62e964eac64abdb9eb384f14280e1800 (patch) | |
tree | ed451de9c9fa14d30131def9d04c0433d076d53f /merge-protos | |
parent | fa8997ab2598ee84d2cf5805740408e50d2ca57b (diff) |
Add files used to merge the repositories
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'merge-protos')
-rw-r--r-- | merge-protos | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/merge-protos b/merge-protos new file mode 100644 index 0000000..758fc46 --- /dev/null +++ b/merge-protos @@ -0,0 +1,6 @@ +#!/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 |