git之日志查看:
git log
这将显示所有提交历史(从最新提交 开始)
git log <commit-hash>
这将显示指定提交及其祖先的提交历史(从commit-hash开始到过去的提交)
git show <commit-hash>
这将显示指定提交的详细信息,包括提交的作者、日期、提交消息以及具体的修改内容
指尖上的记忆git之日志查看:
git log
这将显示所有提交历史(从最新提交 开始)
git log <commit-hash>
这将显示指定提交及其祖先的提交历史(从commit-hash开始到过去的提交)
git show <commit-hash>
这将显示指定提交的详细信息,包括提交的作者、日期、提交消息以及具体的修改内容