This repository has been archived by the owner on Jan 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
FAQ
Steve Powell edited this page May 13, 2015
·
3 revisions
This is place to put questions, and possibly their answers, to help developers.
The set-up page IntelliJ is great, thank you, but it would be good to outline how you are supposed to set up the IDE in more detail. For example,
- Do we create a new project? or import one?
- Do we use file-based config or directory-based config?
- Is the project configuration checked-in to the git repo? (Not the user config, of course).
- The easiest thing to do is to use
File/Open...
from the top-level menu. Navigate to the root of the github Go directory and select it to generate a project using theses sources. The project configuration files are placed in this directory, but otherwise nothing will be updated. This is equivalent to creating a Project from Existing Sources, also in theFile
menu. - Use either file-based or directory-based configurations, it doesn't matter which, because...
- ...we don't check-in any of the configuration files (or directories). The best way to ensure this is to have a universal (global)
.gitignore
file which ignores these files, but putting one in the project root might be safer.