Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用“new app_name”创建了一个新的 Rails 应用程序,我正在尝试编辑 .gitignore 文件,但在我的应用程序文件夹中找不到它。我在哪里可以找到它?我已经安装了 Git。
.gitignore是在项目的根目录中,而不是在app子目录中。首先打开终端并进入您的目录。
.gitignore
app
您需要使用ls -a来显示隐藏文件。
ls -a
然后使用open .gitignore
open .gitignore
点文件是隐藏的。用ls -a来看。