Viewing A Specific Commit_12

本文介绍如何在Git中使用git log和git show命令查看特定提交的详细信息,包括提交的SHA、作者、日期、提交消息及补丁信息等。

Too Much Scrolling

The last few quizzes in the previous section had you scrolling and scrolling through the patch output just to get to the right commit so you could see its info. Wouldn't it be super handy if you could just display a specific commit's details without worrying about all of the others in the repo?

There are actually two ways to do this!

  • providing the SHA of the commit you want to see to git log
  • use a new command git show

They're both pretty simple, but let's look at the git log way and then we'll look at git show.

You already know how to "log" information with:

  • git log
  • git log --oneline
  • git log --stat
  • git log -p

But did you know, you can supply the SHA of a commit as the final argument for all of these commands? For example:

$ git log -p fdf5493

By supplying a SHA, the git log -p command will start at that commit! No need to scroll through everything! Keep in mind that it will also show all of the commits that were made prior to the supplied SHA.

New Command: git show

The other command that shows a specific commit is git show:

$ git show

Running it like the example above will only display the most recent commit. Typically, a SHA is provided as a final argument:

$ git show fdf5493

What does git show do?

The git show command will show only one commit. So don't get alarmed when you can't find any other commits - it only shows one. The output of the git show command is exactly the same as the git log -pcommand. So by default, git show displays:

  • the commit
  • the author
  • the date
  • the commit message
  • the patch information

However, git show can be combined with most of the other flags we've looked at:

  • --stat - to show the how many files were changed and the number of lines that were added/removed
  • -p or --patch - this the default, but if --stat is used, the patch won't display, so pass -p to add it again
  • -w - to ignore changes to whitespace

How many rulesets are added to the CSS by commit 8d3ea36?

Both .read-more and .read-more::after were added.

There's a commit with the message "Convert social links from text to images". How many files were changed by this commit?

Try using git log --oneline to find the SHA of the commit in question. Then pass the SHA to either git log --stat or git show --stat.

请记住,在你刚开始使用Git时,能够显示仓库的历史记录可能会特别有用,

我们需要知道提交中存储的内容,以及在提交之后如何查看它,

This article from Udacity

转载于:https://www.cnblogs.com/weiweim/p/8647846.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值