1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

RubyMineで同名のプロジェクトを作り直す方法

Last updated at Posted at 2015-02-08

RubyMineでRailsプロジェクトを作成し、再度作り直したくなった時に、~/RubymineProjects フォルダ下を削除しても同じ名前で再作成出来ないことがある。

そんな時は、springのプロセスが残ったままになっていることがあるので、psコマンドでプロジェクト名を検索し、該当プロセスをkillしてから同じ名前のプロジェクトを再作成する。

Terminal
> ps -ex | grep hoge

プロセスIDを指定してkill

Terminal
> kill <spring 〜 hogeの該当PID>
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?