Step 1: Get the code into IntelliJ
Start IntelliJ.
IntelliJ shows the following window:
Click on “Open”
Choose build.gradle
in the root of the jabref source folder:
After pressing “OK”, IntelliJ asks how that file should be opened. Answer: “Open as Project”
Then, trust the project:
Ensure that committing via IntelliJ works
IntelliJ offers committing using the UI. Press Alt+0 to open the commit dialog.
Unfortunately, IntelliJ has no support for ignored sub modules [IDEA-285237]. Fortunately, there is a workaround:
Go to File > Settings… > Version Control > Directory Mappings.
Note: In some MacBooks, Settings
can be found at the “IntelliJ” button of the app menu instead of at “File”.
Currently, it looks as follows:
You need to tell IntelliJ to ignore the submodules buildres\abbrv.jabref.org
, src\main\resources\csl-locales
, and src\main\resources\csl-styles
. Select all three (holding the Ctrl key). Then press the red minus button on top.
This will make these directories “Unregistered roots:”, which is fine.
Ensure that committing with other tools work
Open a “git bash”. On Windows, navigate to C:\git-repositories\JabRef
. Open the context menu of the file explorer (using the right mouse button), choose “Open Git Bash here”.
Execute following command:
git update-index --assume-unchanged buildres/abbrv.jabref.org src/main/resources/csl-styles src/main/resources/csl-locales
If you do not see the context menu, re-install git following the steps given at StackOverflow.