결국 artyom과 비슷한 솔루션을 사용 하여이 문제를 해결했습니다.
1 단계 : 패치를 각 덩어리마다 하나씩 여러 개의 개별 패치로 분해합니다.
이 스크립트를 사용 하여이 작업을 수행했습니다.
#!/usr/bin/python2
import sys
header = []
writing_header = False
patchnum = 0
patch = open(sys.argv[1], "r")
out = open("/dev/null", "w")
for line in patch.readlines():
if line.startswith("diff"):
header = []
writing_header = True
if line.startswith("@@"):
out.close()
out = open(str(patchnum) + ".diff", "w")
patchnum += 1
writing_header = False
out.writelines(header)
if writing_header:
header.append(line)
else:
out.write(line)
out.close()
사용법 예 :
$ cd directory_containing_patch
$ mkdir foo
$ cd foo
$ explode.py ../huge_patch.diff
이것은 현재 디렉토리를 0.diff 1.diff etceter라는 파일로 채 웁니다.
2 단계 : 이미 적용된 패치를 버리고 각 패치를 적용합니다.
이 스크립트를 사용 하여이 작업을 수행했습니다.
#!/bin/bash
if [[ $# -ne 1 || ! -d "${1}/" ]]; then
echo "Usage: $0 dirname"
exit 1
fi
find "$1" -name \*.diff | while read f; do
OUTPUT=$(patch -s -p1 -r- -i"$f")
if [ $? -eq 0 ]; then
rm "$f"
else
if echo "$OUTPUT" | grep -q "Reversed (or previously applied) patch detected!"; then
rm "$f"
fi
fi
done
사용법 예 :
$ cd directory_containing_code
$ apply_patches.bash directory_containing_patch/foo
깨끗하게 적용되거나 이미 적용된 이전에 생성 된 패치가 삭제됩니다. 남아있는 패치는 foo
수동으로 검사하고 병합해야하는 거부입니다.