After this git commit -m
submission, can I use any command to get which files (file paths) were submitted?
Can I then read this change list from what file?
# --name-only 只顯示文件名
git log --name-only -1
# --pretty=format:"" 格式化commit message 這里什么都不顯示
git log --pretty=format:"" -1
# 最終
git log --pretty=format:"" --name-only -1
git show commitid, you can view the details of the submission, including file name, file modification content, etc.