summaryrefslogtreecommitdiffstats
path: root/debian/llvm-upstream-patch.sh
blob: fc87971361bdfdcea56b5b58fe7ffe59ef03e7f8 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
# Run this on https://github.com/llvm-mirror/llvm
# Or another repo where the above is the "upstream" remote
set -e
head=$(git rev-parse --verify -q remotes/upstream/master || git rev-parse --verify -q remotes/origin/master)
test -n "$head"
for i in "$@"; do
	git show $(git rev-list "$head" -n1 --grep='git-svn-id: .*@'"$i") > rL"$i".patch
done