I've found surprisingly little on this topic after searching. The only similar question I found on SO is this one:
Why git pull won't/can't merge local changes?
which doesn't really answer the question IMO. I recall when using previous version control systems such as SVN that when you pull in new changes it will automatically merge them in with your working tree, even when they touch the same file.
For me, the vast majority of the time, when I run a git pull, it is theoretically possible to merge into my local changes without any merge conflicts, even when the same files are touched. In those cases, how can I get git to do this merge automatically at least in the case when the merge can be done with no conflicts?
I'd be happy with the current behavior (of having to first stash) if git detects that there would be merge conflicts; but otherwise, I'd like it to just do it automatically. Actually, the ideal behavior for me would be that, even in files where there would be merge conflicts, it will leave the <<<<
markers so that I can go in and fix it.
Is there an option to do this that I am missing? If not, is there a reason that the git designers have not allowed this (even as an opt-in)? Seems strange that more people haven't complained about this :)