windows - What does slash dot refer to in a file path? -
i'm trying install grunt template on computer i'm having issues. realized perhaps different happening because of path given grunt docs, is
%userprofile%\.grunt-init\ what . mean before grunt-init?
i've tried whole import manually isn't working
git clone https://github.com/gruntjs/grunt-init-gruntfile.git "c:\users\imray\appdata\roaming\npm\gru nt-init\" i message:
fatal: not create work tree dir 'c:\users\imray\appdata\roaming\npm\.grunt-init"'.: invalid argument does have /.? mean?
the \ (that's backslash, not slash) directory delimiter. . part of directory name.
.grunt-init , grunt-init 2 distinct names, both valid.
on unix-like systems, file , directory names starting . hidden default, why you'll see such names things configuration files.
Comments
Post a Comment