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?
仅有的幸福2017-05-02 09:42:00
# --name-only 只显示文件名
git log --name-only -1
# --pretty=format:"" 格式化commit message 这里什么都不显示
git log --pretty=format:"" -1
# 最终
git log --pretty=format:"" --name-only -1
PHP中文网2017-05-02 09:42:00
git show commitid, you can view the details of the submission, including file name, file modification content, etc.