Git and IntelliJ IDEA: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 17: Line 17:


[[IntelliJ_Concepts#User_Dictionaries|User dictionaries]] should not be shared, because they may conflict with other users'.
[[IntelliJ_Concepts#User_Dictionaries|User dictionaries]] should not be shared, because they may conflict with other users'.
<syntaxhighlight lang='text'>
.idea/**/dictionaries
</syntaxhighlight>
=Suggested .gitignore=


<syntaxhighlight lang='text'>
<syntaxhighlight lang='text'>
.idea/**/dictionaries
.idea/**/dictionaries
</syntaxhighlight>
</syntaxhighlight>

Revision as of 17:49, 10 May 2018

External

Internal

Overview

What to Share

What Shouldn't Share

What Not to Share

User dictionaries should not be shared, because they may conflict with other users'.

.idea/**/dictionaries

Suggested .gitignore

.idea/**/dictionaries