如何列出提交中的所有文件?
我正在寻找一个简单的git
命令,该命令提供了散列(SHA1)提交的所有文件的所有文件的格式良好的列表,没有无关的信息。
我努力了:
git show a303aa90779efdd2f6b9d90693e2cbbbe4613c1d
虽然它列出了这些文件,但它也包含了不必要的差异信息。
是否有另一个git
命令将提供我想要的列表,以便我可以避免从git show
输出parsing它?
首选的方式 (因为它是一个pipe道命令,意味着程序化):
$ git diff-tree --no-commit-id --name-only -r bd61ad98 index.html javascript/application.js javascript/ie6.js
另一种方式 (不太喜欢脚本,因为这是一个瓷器命令,意味着面向用户)
$ git show --pretty="" --name-only bd61ad98 index.html javascript/application.js javascript/ie6.js
-
--no-commit-id
禁止提交ID输出。 -
--pretty
参数指定了一个空的格式string,以避免在开始处的错误。 -
--name-only
参数--name-only
显示受影响的文件名(谢谢Hank)。 -
-r
参数是recursion到子树中
如果你想获得更改文件的列表:
git diff-tree --no-commit-id --name-only -r <commit-ish>
如果你想获得一个提交中的所有文件的列表,你可以使用
git ls-tree --name-only -r <commit-ish>
我只是假设gitk
是不希望的。 在这种情况下,请尝试使用git show --name-only <sha>
。
我个人使用show命令的–stat和–oneline的组合:
git show --stat --oneline HEAD git show --stat --oneline b24f5fb git show --stat --oneline HEAD^^..HEAD
如果您不喜欢/想要添加/删除统计信息,则可以使用–name-onlyreplace–oneline
git show --name-only --oneline HEAD git show --name-only --oneline b24f5fb git show --name-only --oneline HEAD^^..HEAD
最近我需要列出两个提交之间的所有更改的文件。 所以我用这个(也是* nix特定的)命令
git show --pretty="format:" --name-only START_COMMIT..END_COMMIT | sort | uniq
更新 :或者像Ethan指出的那样
git diff --name-only START_COMMIT..END_COMMIT
使用--name-status
还将包括每个文件旁边的更改(添加,修改,删除等)
git diff --name-status START_COMMIT..END_COMMIT
你也可以做
git log --name-only
您可以浏览各种提交,提交消息和更改的文件。
键入q让你的提示回来。
我经常使用更改的别名。 设置:
git config --global alias.changed 'show --pretty="format:" --name-only'
然后:
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)
类似的命令可能是有用的:
git log --name-status --oneline (very similar, but shows what actually happened M/C/D) git show --name-only
最简单的forms:
git show --stat (hash)
这更容易记住,它会给你所有你需要的信息。
如果你真的只想要文件的名字,你可以添加--name-only
选项。
git show --stat --name-only (hash)
使用标准的git diff命令 (也适用于脚本):
git diff --name-only <sha>^ <sha>
如果您还想要更改文件的状态:
git diff --name-status <sha>^ <sha>
这与合并提交很好地工作。
$ git log 88ee8 ^ .. 88ee8 --name-only --pretty =“format:”
我用它来获得两个变更集之间的修改文件列表:
git diff --name-status <SHA1> <SHA2> | cut -f2
我喜欢用
git show --stat <SHA1>^..<SHA2>
git show --name-only commitCodeHere
我喜欢这个:
git diff --name-status <SHA1> <SHA1>^
还有git whatchanged
,比git log
还要低
NAME git-whatchanged - Show logs with difference each commit introduces
它输出提交摘要及其下方的文件列表及其模式,如果添加( A
),删除( D
)或修改( M
);
$ git whatchanged f31a441398fb7834fde24c5b0c2974182a431363
会给像这样的东西:
commit f31a441398fb7834fde24c5b0c2974182a431363 Author: xx <xx@xx.nl> 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 ...
我知道这个答案并不符合“没有多余的信息”,但我仍然认为这个列表更有用,那么只是文件名。
列出在提交中更改的文件:
git diff --name-only SHA1^ SHA1
这不会显示日志消息,额外的换行符或任何其他混乱。 这适用于任何提交,而不仅仅是当前提交。 不知道为什么还没有提到,所以我join了它。
如果您只想在上次提交中更改文件列表,请使用简单的一行命令:
git diff HEAD~1 --name-only
显示日志。
COMMIT可以是空白的(“”),或者sha-1或者sha-1缩短。
git log COMMIT -1 --name-only
这将只列出文件,对进一步处理非常有用。
git log COMMIT -1 --name-only --pretty=format:"" | grep "[^\s]"
好的,有几种方法来显示特定提交中的所有文件…
要减less信息并只显示提交文件的名称,只需添加--name-only
或--name-status
标志…,这些标志只显示与以前提交不同的文件名称想…
所以你可以用git diff
跟--name-only
,在<sha0> <sha1>
之后有两个提交哈希,如下所示:
git diff --name-only 5f12f15 kag9f02
我也创build了下面的图像来显示在这些情况下要经历的所有步骤:
“ git show --stat
”(谢谢Ryan)和一些sed命令的组合应该为你修剪数据:
git show --stat <SHA1> | sed -n "/ [\w]\*|/p" | sed "s/|.\*$//"
这将只产生修改文件的列表。
有一个简单的技巧来查看文件列表,只需在散列之后添加:
git show 9d3a52c474:
然后你可以钻入,
git show 9d3a52c474:someDir/someOtherDir
如果你点击一个文件,你会得到该文件的原始版本; 这有时是你想要的,如果你只是在寻找一个很好的参考或关键的代码片段(差异可以使一切搞乱),
git show 9d3a52c474:someDir/someOtherDir/somefile
这种方法的缺点是它不容易显示文件树。
find了一个完美的答案:
git show --name-status --oneline <commit-hash>
所以我可以知道
which files were just modified M Which files were newly added , A Which files were deleted , D
git show HEAD@{0}
对我来说工作得很好
我想我会分享我的别名摘要..我也发现使用'zsh'伟大与Git它色度键一切都很好,并告诉你想分支在所有的时间通过改变命令提示符。
对于那些来自SVN的人来说,你会发现这是有用的:(这是来自不同主题的想法的组合,我只知道如何使用复制/粘贴)
.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 <jim@stratengllc.com> 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 <jim@stratengllc.com> 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