I’ve been using Git for almost two years now and I personally feel it is the superior version control system. One complaint I did have when I first started using it was that the log command had horrible output for readability. Examples speak louder … the command:
git log
Outputs this (click for larger):
While you can read it, 95 % of the time this view is not helpful. I usually want to see the commit message, the first part of the guid of the commit and the user who made the change along with some date time details.Thankfully someone already created this git alias and I use it...
Read more...