Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting Clear read only status on Webstorm 8

I am new to Webstorm 8. I have webstorm 8 installed on Ubuntu 14.04 LTS.

I am trying to edit a file but I am getting a popup, with heading "Clear read only status", which shows file and two radio button

  • Using File System
  • Using version control integration

When I select Using File system and click OK, nothing happens, and it doesn't allow to select Second option.

I am using git as my dcvs.

Please guide me on how I can remove this read only status from that file.

Thanks in advance.

like image 864
Mozak Avatar asked Aug 20 '14 04:08

Mozak


People also ask

How do I remove read-only status?

Clear the read-only status of a workbookOpen the Finder and select the workbook you no longer want to be read-only. , click Get Info. On the General pane, clear the Locked check box.

How do I remove read-only from Intellij?

When a read-only file is opened in the editor, you double-click lock icon. in the status bar. You remove read-only attribute externally, using file properties.

How do I change the read-only status in Pycharm?

Unlock a file status bar icons or the File | Make File Read-only, or File | Make File Writable main menu commands. See Toggle read-only attribute of a file for details.

How do I change read-only status in Ubuntu?

To simply put:The chmod command allows changing permissions of files and folders. The chown command allows changing the owner of a given file or folder, which can be a user and a group or all.


1 Answers

I had similar problem and I ran following command and my problem was resolved:

sudo chown -R $(whoami) my-project-folder

Works on both Ubuntu & OS X

To check username use: whoami

like image 103
Raheel Avatar answered Sep 22 '22 05:09

Raheel