设置 github 存储库时出现问题,CMD 中无法识别触摸

发布于 2024-11-18 18:38:44 字数 148 浏览 4 评论 0原文

当我到达步骤:

touch README

时,出现错误

“touch”未被识别为内部或外部命令、可操作程序或批处理文件。

这意味着什么?

我使用的是 Win 7 Home Premium 命令提示符。

When I get to the step:

touch README

I get the error

'touch' is not recognized as an internal or external command, operable program or batch file.

What does this mean?

I'm in Win 7 Home Premium command prompt.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

笑忘罢 2024-11-25 18:38:44

确保您使用的是 git bash,而不是 cmd。

Make sure you're working in git bash, not cmd.

月竹挽风 2024-11-25 18:38:44

touch 命令将文件的上次修改时间戳更新为当前时间,或者如果文件尚不存在,则创建一个具有给定名称的空文件。 Windows 中不存在此命令(默认情况下),这就是您收到该错误消息的原因。

要完成此步骤,您可以按照您觉得最舒服的方式创建一个名为 README 的文件。例如,如果没有更好的替代方案,您可以使用 notepad.exe

The touch command updates the last-modified timestamp of the file to the current time, or if the file doesn't already exist, creates an empty file with the given name. This command does not exist (by default) in Windows, which is the reason you get that error message.

To get past this step, you can create a file called README in whatever way you feel most comfortable with. For example, you could use notepad.exe if you have no better alternative available.

2024-11-25 18:38:44

在 CMD 中使用此代码,然后触摸您的文件

npm install touch-cli -g

Use this code in CMD and then touch your file

npm install touch-cli -g
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文