How to list all the files in a commit?
我正在寻找一个简单的
我试过了:
1 | git show a303aa90779efdd2f6b9d90693e2cbbbe4613c1d |
虽然它列出了文件,但它还包含每个文件的不需要的差异信息。
是否有另一个
首选方式(因为它是一个管道命令;意味着是程序化的):
1 2 3 4 | $ git diff-tree --no-commit-id --name-only -r bd61ad98 index.html javascript/application.js javascript/ie6.js |
另一种方式(不太喜欢脚本,因为它是一个瓷器命令;意味着面向用户)
1 2 3 4 | $ git show --pretty="" --name-only bd61ad98 index.html javascript/application.js javascript/ie6.js |
-
--no-commit-id 禁止提交ID输出。 -
--pretty 参数指定一个空格式字符串,以避免开头的错误。 -
--name-only 参数仅显示受影响的文件名(Thanks Hank)。如果你想看看每个文件发生了什么(删除,修改,添加),请改用--name-status -
-r 参数是递归到子树
如果要获取已更改文件的列表:
1 | git diff-tree --no-commit-id --name-only -r <commit-ish> |
如果要获取提交中所有文件的列表,可以使用
1 | git ls-tree --name-only -r <commit-ish> |
我只是假设
我个人使用--stat和--oneline与show命令的组合:
1 2 3 | git show --stat --oneline HEAD git show --stat --oneline b24f5fb git show --stat --oneline HEAD^^..HEAD |
如果您不喜欢/想要添加/删除统计信息,则可以使用--name-only替换--stat
1 2 3 | git show --name-only --oneline HEAD git show --name-only --oneline b24f5fb git show --name-only --oneline HEAD^^..HEAD |
你也可以
1 | git log --name-only |
您可以浏览各种提交,提交消息和更改的文件。
输入q以获取提示。
最近我需要在两次提交之间列出所有已更改的文件。所以我使用了这个(也是* nix特定的)命令
1 | git show --pretty="format:" --name-only START_COMMIT..END_COMMIT | sort | uniq |
更新:或者正如Ethan在下面指出的那样
1 | git diff --name-only START_COMMIT..END_COMMIT |
使用
1 | git diff --name-status START_COMMIT..END_COMMIT |
最简单的形式:
这更容易记住,它将为您提供所需的所有信息。
如果您真的只想要文件的名称,可以添加
我经常使用更改的别名。设置:
1 | git config --global alias.changed 'show --pretty="format:" --name-only' |
然后:
1 2 3 | git changed (lists files modified in last commit) git changed bAda55 (lists files modified in this commit) git changed bAda55..ff0021 (lists files modified between those commits) |
类似的命令可能有用:
1 2 | git log --name-status --oneline (very similar, but shows what actually happened M/C/D) git show --name-only |
使用标准的git diff命令(也适用于脚本):
1 | git diff --name-only <sha>^ <sha> |
如果您还想要更改文件的状态:
1 | git diff --name-status <sha>^ <sha> |
这适用于合并提交。
使用
1 | git log --name-status |
这将显示提交ID,消息,更改的文件以及是否已修改,创建,添加或删除。有点一对一的命令。
1 | $ git log 88ee8^..88ee8 --name-only --pretty="format:" |
好的,有几种方法可以显示特定提交中的所有文件...
要减少信息并仅显示已提交文件的名称,您只需添加
所以你可以做
1 | git diff --name-only 5f12f15 kag9f02 |
我还创建了下面的图像,以显示在这些情况下要经历的所有步骤:
我用它来获取两个变更集之间的修改文件列表:
1 | git diff --name-status <SHA1> <SHA2> | cut -f2 |
我喜欢用
1 | git show --stat <SHA1>^..<SHA2> |
还有
1 2 | NAME git-whatchanged - Show logs with difference each commit introduces |
它输出提交摘要及其下面的文件列表及其模式,如果添加(
1 | $ git whatchanged f31a441398fb7834fde24c5b0c2974182a431363 |
会给出类似的东西:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | commit f31a441398fb7834fde24c5b0c2974182a431363 Author: xx <[email protected]> Date: Tue Sep 29 17:23:22 2015 +0200 added fb skd and XLForm :000000 100644 0000000... 90a20d7... A Pods/Bolts/Bolts/Common/BFCancellationToken.h :000000 100644 0000000... b5006d0... A Pods/Bolts/Bolts/Common/BFCancellationToken.m :000000 100644 0000000... 3e7b711... A Pods/Bolts/Bolts/Common/BFCancellationTokenRegistration.h :000000 100644 0000000... 9c8a7ae... A Pods/Bolts/Bolts/Common/BFCancellationTokenRegistration.m :000000 100644 0000000... bd6e7a1... A Pods/Bolts/Bolts/Common/BFCancellationTokenSource.h :000000 100644 0000000... 947f725... A Pods/Bolts/Bolts/Common/BFCancellationTokenSource.m :000000 100644 0000000... cf7dcdf... A Pods/Bolts/Bolts/Common/BFDefines.h :000000 100644 0000000... 02af9ba... A Pods/Bolts/Bolts/Common/BFExecutor.h :000000 100644 0000000... 292e27c... A Pods/Bolts/Bolts/Common/BFExecutor.m :000000 100644 0000000... 827071d... A Pods/Bolts/Bolts/Common/BFTask.h ... |
我知道这个答案并没有真正匹配"没有多余的信息。"但我仍然认为这个列表比文件名更有用。
如果您只想在上次提交中更改文件列表,请使用简单的一行命令:
1 | git diff HEAD~1 --name-only |
我喜欢这个:
1 | git diff --name-status <SHA1> <SHA1>^ |
找到了一个完美的答案:
1 | git show --name-status --oneline <commit-hash> |
所以我可以知道
1 2 3 4 5 | which files were just modified M Which files were newly added , A Which files were deleted , D |
列出提交中更改的文件:
1 | git diff --name-only SHA1^ SHA1 |
这不显示日志消息,额外换行符或任何其他混乱。这适用于任何提交,而不仅仅是当前提交。不知道为什么还没有提到它,所以我正在添加它。
显示日志。
COMMIT可以为空(")或sha-1或sha-1缩短。
1 | git log COMMIT -1 --name-only |
这将仅列出文件,对进一步处理非常有用。
1 | git log COMMIT -1 --name-only --pretty=format:"" | grep"[^\s]" |
有一个简单的技巧可以查看文件列表,只需在哈希后添加
1 | git show 9d3a52c474: |
然后你可以钻进来,
1 | git show 9d3a52c474:someDir/someOtherDir |
如果您点击文件,您将获得该文件的原始版本;如果你只是寻找一个很好的参考或关键代码片段(差异可以使一切变得一团糟),有时你会想要的,
1 | git show 9d3a52c474:someDir/someOtherDir/somefile |
这种方法的唯一缺点是它不容易显示文件树。
尝试使用此命令获取名称并更改行数
1 | git show --stat <commit-hash> |
只显示文件名
1 | git show --stat --name-only <commit-hash> |
获取最后一次提交哈希然后尝试此命令
1 | git log -1 |
最后一次提交显示文件名称和文件状态修改,创建或删除
1 | git log -1 --oneline --name-status |
或者为所有人
1 | git log |
"
1 | git show --stat <SHA1> | sed -n"/ [\w]\*|/p" | sed"s/|.\*$//" |
这将只生成修改过的文件列表。
1 | git show HEAD@{0} |
对我来说很好
如果您使用的是oh-my-zsh和git插件,则glg快捷方式很有用。
我用它来获取合并提交中已更改文件的列表
1 2 3 | λ git log -m -1 --name-only --pretty="format:" configs/anotherconfig.xml configs/configsInRepo.xml |
要么
1 2 3 | λ git log -m -1 --name-status --pretty="format:" A configs/anotherconfig.xml M configs/configsInRepo.xml |
我以为我会分享我的别名的摘要..我也发现使用'zsh'很好用git它色度键很好地通过改变命令提示符告诉你想要分支在所有时间。
对于那些来自SVN的人来说,你会发现这很有用:(这是来自不同线程的想法的组合,我只相信知道如何使用复制/粘贴)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | .gitconfig: ls = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)%an%Creset' --abbrev-commit --date=relative --name-status >>git ls * 99f21a6 - (HEAD -> swift) New Files from xcode 7 (11 hours ago) Jim Zucker| | A icds.xcodeproj/project.pbxproj | A icds.xcodeproj/project.xcworkspace/contents.xcworkspacedata | A icds/AppDelegate.m | A icds/Assets.xcassets/AppIcon.appiconset/Contents.json * e0a1bb6 - Move everything to old (11 hours ago) Jim Zucker| | D Classes/AppInfoViewControler.h | D Classes/AppInfoViewControler.m | D Classes/CurveInstrument.h .gitconfig: lt = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)%an%Creset' --abbrev-commit --date=relative >>git lt * 99f21a6 - (HEAD -> swift) New Files from xcode 7 (11 hours ago) Jim Zucker * e0a1bb6 - Move everything to old (11 hours ago) Jim Zucker * 778bda6 - Cleanup for new project (11 hours ago) Jim Zucker * 7373b5e - clean up files from old version (11 hours ago) Jim Zucker * 14a8d53 - (tag: 1.x, origin/swift, origin/master, master) Initial Commit (16 hours ago) Jim Zucker .gitconfig lt = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)%an%Creset' --abbrev-commit --date=relative >> git lt commit 99f21a61de832bad7b2bdb74066a08cac3d0bf3c Author: Jim Zucker <[email protected]> Date: Tue Dec 1 22:23:10 2015 -0800 New Files from xcode 7 A icds.xcodeproj/project.pbxproj A icds.xcodeproj/project.xcworkspace/contents.xcworkspacedata commit e0a1bb6b59ed6a4f9147e894d7f7fe00283fce8d Author: Jim Zucker <[email protected]> Date: Tue Dec 1 22:17:00 2015 -0800 Move everything to old D Classes/AppInfoViewControler.h D Classes/AppInfoViewControler.m D Classes/CurveInstrument.h D Classes/CurveInstrument.m |
这应该工作:
1 | git status |
这将显示未上演的内容和上演的内容。