如何添加文件/文件夹到. gitignore 在 IntelliJ IDEA?

我尝试从 Eclipse 切换到 IntelliJ IDEA。我有一个使用 Git 的项目,我想快速添加文件到 。吉蒂诺尔文件。在 Eclipse 中,我可以右键单击 file/目录并选择‘ 添加到. gitignore’。

在 IntelliJ IDEA 中是否有类似的东西,或者我必须手动编辑文件?

153927 次浏览

IntelliJ has no option to click on a file and choose "Add to .gitignore" like Eclipse has.

The quickest way to add a file or folder to .gitignore without typos is:

  1. Right-click on the file in the project browser and choose "Copy Path" (or use the keyboard shortcut that is displayed there).
  2. Open the .gitignore file in your project, and paste.
  3. Adjust the pasted line so that it is relative to the location of the .gitignore file.

Additional info: There is a .ignore plugin available for IntelliJ which adds a "Add to .gitignore" item to the popup menu when you right-click a file. It works like a charm.

You can create file .gitignore and then Idea will suggest you install plugin

I'm using intelliJ 15 community edition and I'm able to right click a file and select 'add to .gitignore'

right click on the project create a file with name .ignore, then you can see that file opened.

at the right top of the file you can see install plugins or else you can install using plugins(plugin name - .ignore).

Now when ever you give a right click on the file or project you can see the option call add to .ignore

Intellij had .ignore plugin to support this. https://plugins.jetbrains.com/plugin/7495?pr=idea

After you install the plugin, you right click on the project and select new -> .ignore file -> .gitignore file (Git) enter image description here

Then, select the type of project you have to generate a template and click Generate. enter image description here

Here is the screen print showing the options to ignore the file or folder after the installation of the .ignore plugin. The generated file name would be .gitignore enter image description here