设置 github 存储库时出现问题,CMD 中无法识别触摸
当我到达步骤:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
确保您使用的是 git bash,而不是 cmd。
Make sure you're working in git bash, not cmd.
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 usenotepad.exe
if you have no better alternative available.在 CMD 中使用此代码,然后触摸您的文件
Use this code in CMD and then touch your file