Git log: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 5: Line 5:
=Overview=
=Overview=


Show [[Git Concepts#Commit|commit]] logs.
Show [[Git Concepts#Commit|commit]] logs. With no arguments, shows the [[#Commit_History_of_the_Current_Branch|commit history of the current branch]].


=Commit Limiting=
=Commit Limiting=

Revision as of 06:38, 24 July 2020

Internal

Overview

Show commit logs. With no arguments, shows the commit history of the current branch.

Commit Limiting

Commit Limiting

Use Cases

Commit History of the Current Branch

git log

Commits of a Specific User

The following command searches only the current commit's ancestors.

git log --author=ovidiu

Note that "ovidiu" will match longer strings that include it and the comparison will be case insensitive.

Commit History of an Arbitrary Branch

The branch does not have to be checked out:

git log develop
git log origin/develop

Commit History of a File from an Arbitrary Branch

git log master -- Casks/vagrant.rb

Commit with a Specific Message

Search the current branch:

git log --grep "something"

Search all branches:

git log --all --grep "something"