At my workplace, we have a βmainβ trunk line that represents the published code. To make changes, I look at the working copy, create a topic branch, commit it to the topic branch, merge the topic branch into a wizard and click.
For small changes, I can pass directly to the wizard, and then click.
My problem is that when I use "git log", I do not need my branches in my local working copy. I want to see changes in the main branch on a remote shared git server. What more, if I use --stat or -p or one of my friends, I want to see files and changes related to committing a merge, for mastering, not related to their original commits (which, as I said, don't want see at all).
How can I do it?
source
share