I want to be able to apply a stash that looks like this:
git stash show --stat stash@\{1\}
extensions/99/fill-thresholds.json | 2 +-
html/js/1.js | 10 ++++++++++
html/pages/su/2.html | 4 ++--
html/pages/su/popups/3.html | 21 +++++++++++----------
sql/2 - data/4.sql | 6 +++---
sql/3 - keys/5.sql | 4 ++--
sql/5 - views/6.sql | 2 +-
7 files changed, 30 insertions(+), 19 deletions(-)
When I try to apply that stash I get a conflict error:
git stash apply stash@\{1\}
Auto-merging sql/2 - data/4.sql
CONFLICT (content): Merge conflict in sql/2 - data/4.sql
And then I have tried to resolved the conflict but then my other files were not applied, if I run the apply that stash again I get that conflict error again.
I don't really care about the file with the error so I was thinking if there's a way to discard that file only from the stash so when I try to apply it I don't get that error or how can I continue applying the stash after I resolved the conflict?