Git log for range across all branches (even remote)

git, git-log

Solution

git log --before {2.days.ago} --after {14.days.ago} --all --stat --branches=* --remotes=*

Problem

I am trying the following ``` git log --before {2.days.ago} --after {14.days.ago} --all --stat ``` But it seems to only give me the log for one remote branch. I'd like to get the log for branches remote and local.

Original source

Related problems