[DiscordArchive] What should we do about that?
[DiscordArchive] What should we do about that?
Archived author: Skarn • Posted: 2019-06-18T08:11:18.816000+00:00
Original source
What should we do about that?
Archived author: Adspartan • Posted: 2019-06-18T08:11:19.340000+00:00
Original source
mfw he gave up merging
Archived author: Skarn • Posted: 2019-06-18T08:11:24.789000+00:00
Original source
Archived author: Skarn • Posted: 2019-06-18T08:11:49.352000+00:00
Original source
well, understandable
Archived author: schlumpf • Posted: 2019-06-18T08:15:33.397000+00:00
Original source
`#include <QtWidgets\QTreeWidget>` wew
Archived author: Adspartan • Posted: 2019-06-18T08:15:51.386000+00:00
Original source
it's a lot better "ignoring whitespace" but iirc the changes are still commited
Archived author: schlumpf • Posted: 2019-06-18T08:16:13.324000+00:00
Original source
Well, other than the reset-diff-apply trick I have no idea but using the -w diff and manually applying that mess, preferably in multiple commits
Archived author: Skarn • Posted: 2019-06-18T08:16:13.446000+00:00
Original source
how do I do that?
Archived author: schlumpf • Posted: 2019-06-18T08:17:47.627000+00:00
Original source
I do not know with hg, but for git I use
```
git reset --soft HEAD^ # chop off last commit but keep changes
git diff -U0 -w --no-color | git apply --cached --ignore-whitespace --unidiff-zero - # diff without whitespace changes and stage that
git commit -m "mess, but without whitespace"
```
Archived author: schlumpf • Posted: 2019-06-18T08:18:37.269000+00:00
Original source
hg surely has similar commands. maybe instead of diff | apply you need to diff > file and apply < file or something, but the general process is the same.