Check Git File Commit History: Quick Guide
To view the submission history of a file, you can use the following command:
git log <文件名>
This command will list all the commit history of the file, including the name and email of the committer, the time of the commit, the commit message, and more. You can navigate through the commit history using the up and down arrow keys, and exit by pressing the q key. If you want to view the specific changes made to the file, you can use the following command:
git log -p <文件名>
This command will list the specific changes made to the files in each commit.