user697911
user697911

Reputation: 10531

Intellij doesn't generate .gitignore file?

I configured my ignored files through "Settings->version control->ignored files", but didn't see the .gitignore file to be created. Should I create it manually? Or

Upvotes: 7

Views: 11244

Answers (2)

CrazyCoder
CrazyCoder

Reputation: 401975

IntelliJ IDEA doesn't support managing .gitignore files. Vote for this feature request.

You can use .ignore plug-in for assistance with managing the .gitignore file directly from the IDE.

Upvotes: 6

Gunnar Bernstein
Gunnar Bernstein

Reputation: 6222

IntelliJ IDEA 2019.2 has added native .gitignore support. You can find more information in their blog post.

For older versions, you can use the .ignore plug-in for assistance.

Upvotes: 5

Related Questions