In git what does "Commits by domain" mean?
We ran gitstats and under the commits by domain we have some strange domains in their including another company(foo.com) that'开发者_如何学JAVAs down the street. Does anyone know where that information comes from?
It's the domain of the user that committed it. I found out I could search my repo for who it was using
git log --author=Linus
That showed the user that was using the in question domain.
精彩评论