国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Can Git get the list of submitted files?
巴扎黑
巴扎黑 2017-05-02 09:40:00
0
6
913

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?

巴扎黑
巴扎黑

reply all(6)
僅有的幸福
# --name-only 只顯示文件名 
git log --name-only -1
# --pretty=format:"" 格式化commit message 這里什么都不顯示
git log --pretty=format:"" -1
# 最終
git log --pretty=format:"" --name-only  -1
為情所困

try this command

git log --oneline --name-only -1

某草草

It is recommended to use tig

洪濤

git show commitid, you can view the details of the submission, including file name, file modification content, etc.

為情所困

Or you can use git-diff:

git diff --name-only HEAD~1 HEAD
漂亮男人
git log --stat
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template