Is there an easy way in IDEA 12 to rename a project in the "Recent Projects" list?
标签:
intellij-idea
相关问题
- Configure gradle plugin based on future tasks
- How to make available “open this project in Intell
- IntelliJ 2017.1.2 GOLANG debug does not work on br
- JavaFX sample issue
- Could not import the newly generated play framewor
相关文章
- In IntelliJ IDEA, how can I create a key binding t
- IntelliJ IDEA can't open projects or add SDK o
- IntelliJ Subversion Authentication Required Dialog
- Kotlin Koans with EduTools plugin: “Failed to laun
- How to set up Intellij to run javap command on a p
- How to enable “type information” for streams retur
- How to add a project to build path in IntelliJ Ide
- How do I use Gradle bootRun with --args in Intelli
I completed the renaming as below.
The attached image is structured in project folder.
close IDEA intellij (14.0.2)
change intellij project name (folder)
e.g) old_project_name -> new_project_name
change
.idea
in folderWe have only changed the
1) artifacts in folder -> xml
2) runConfigurations in folder -> xml
3) modules.xml
4) workspace.xml
5) [your_project_name].iml
(Depending on your project structure, your folder may not contain
xml
)restart IDEA intellij
File -> Import Module...[your intellij project]
I hope this helps you :)
Change your project using refactor. (first change your project folder name).
Everything should be ok now.
Sublime Text
, useCtrl+Shift+F
to replace all "old" to "new"Then reopen this project and build it!
Found the solution.
You can rename the Project under "File > Project Structure > Project > Project Name".
Simply edit the file that contains the name:
.idea/.name
.I've tried the answer of @Matthias, @Ernest and @fhucho, but did not work (with 12.1.6CE).
What made it work was:
.ipr
file, as proposed by @Ernest.iml
nor.iws
file.idea/.name
replace all occurrences for the initial project name by the new one in all
.xml
filesfind . -name "*.xml" -exec grep -Hn $InitProjectName {} \;