要查看git仓库中的历史记录,可以使用以下命令:
查看提交历史记录:git log查看简洁的提交历史记录:git log --oneline查看指定文件的提交历史记录:git log <file>查看指定作者的提交历史记录:git log --author=<author>查看指定时间范围内的提交历史记录:git log --since=<date1> --until=<date2>查看某个提交的详细信息:git show <commit>查看某个提交的变更内容:git diff <commit1> <commit2> 

