Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
几天前(大约 1 个月)在 git 中,我使用提交消息 'Test' 将错误的文件推送到存储库。在本地系统中,我想在特定分支中查看带有提交消息“测试”的那些文件。如何检查?
首先,您可以尝试搜索 Git 日志以查找与文本匹配的提交Test:
Test
git log -g --grep=Test
然后您可以使用以下命令查看给定提交中的文件:
git show --pretty="" --name-only 7dj82lb3
哪里7dj82lb3是提交消息与您的搜索文本匹配的提交的 SHA-1 哈希。
7dj82lb3
来自ck编辑器的标签?