Как я могу использовать команду touch
для создания файла «.ignore» из PowerShell?
Я могу использовать команду в Git Bash (MINGW64)
me@my_computer MINGW64 ~/stuff (master)
$ touch .gitignore
... но было бы здорово остаться в PowerShell и обойти Windows, чтобы не иметь имен файлов, начинающихся с точки. Страницы справки /man /info Bash не распознают touch
. FWIW, я следую этому руководству и провел некоторое исследование со ссылками в ответах здесь, но не нашел ответа. Когда я пытаюсь touch .gitignore
в PowerShell, я получаю следующее сообщение об ошибке:
PS C:\Users\_user_name_\stuff> touch .gitignore
The term 'touch' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:6
+ touch <<<< .gitignore
+ CategoryInfo : ObjectNotFound: (touch:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException