It may sounds weird, but sometimes during some quick-and-dirty hacks I would like to have the files changed to reflect both prior version and stashed changes after a git stash apply
:
++<<<<<<< Updated upstream
+stuff
++=======
+ more stuff
++>>>>>>> Stashed changes
This notation is used by Git to manually resolve conflicts; I'm not necessarily looking for that, what I want is just a way to have both versions in my editor without using any external merge tools.
Maybe this can be better obtained using a feature of the editor rather than Git itself, in that case I'm using Emacs.