How do I name the .bowerrc file?

一曲冷凌霜 提交于 2019-11-29 01:00:41

on the command line (make sure to cd into your working directory), issue this command:

touch .bowerrc

This will also work for other files common to webdev like .htaccess and .gitignore

Note: If you haven't installed git bash for windows, you may not have support for the touch command. In that case (as mentioned in one of the comments here), the easiest way to accomplish this is via the cli with:

echo "" > .bowerrc
PeteK68

To create a file that starts with a "." in Windows, you just need to add a trailing ".".

So, simply name your file ".bowerrc." instead of ".bowerrc".

See https://superuser.com/questions/64471/create-rename-a-file-folder-that-begins-with-a-dot-in-windows for more information and more detailed solution if this doesn't work for you.

Another way to accomplish this is through Notepad++.

  • Create the file in Notepad++
  • Set the encoding to "Encoding in ANSI" (click "Encoding" in the menu bar)
  • Save the file as .bowerrc (change the "Save as type:" to . which is one list item up from *.txt)

Simply rename the file you created:

C:\project> ren bowerrc .bowerrc
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!