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.
我想使用 Windows 记事本查看以前的提交。我正在PowerShell中尝试下面的代码,但没有成功。请指教。
git show notepad HEAD^4:index.html
尝试
git show HEAD^4:index.html > results.txt && start notepad "results.txt"
并在记事本中打开生成的文本文件。您可以将文件的路径更改为您想要的位置。
编辑:我添加了一个部分来打开文本文件。如果找不到文件,您可能需要指定文件的完整路径。