How can I get git apply --index to not abort completely just because a single hunk fails? I have a 100K+ patch with dozens of files deleted and added, it\'d be a pa
First, perform git apply --reject. Then run git add -p and select hunks interactively. Instead of add -p you can also use other git GUIs. For adding new files add them manually if not added.