0 votes
in Git by
How to view the commit history of the repository?

1 Answer

0 votes
by
Using command ‘git log"; this command displays commits list(in chronological order) from latest to old one in descending order of the committed date. For each commit record it displays-

Commit id (SHA-1 has code)

Author's (user's) name and email-id Date and time

Commit message provided at time of commit

To make the output more compact or custom; we can use lot of other options along with command e.g. 'git log -- oneline'

Related questions

0 votes
asked Feb 10, 2020 in Git Slack Integration by rahuljain1
0 votes
asked Feb 17, 2020 in Git by SakshiSharma
...