July 2018
Intermediate to advanced
354 pages
10h 57m
English
We have used git log, git diff, and git shortlog to find information about the repository, but there are so many options for those commands on how to find bottlenecks in the source code.
If we want to find the files with the most commits, and these are not necessarily the files with the most line additions or deletions, we can use git log:
$ git log origin/stable-3.1..origin/stable-3.2 --format=format: --name-only org.eclipse.jgit.ant.test/META-INF/MANIFEST.MF org.eclipse.jgit.ant.test/pom.xml
Read now
Unlock full access