Last active
October 1, 2019 10:43
-
-
Save oropesa/403b1cc28d092eed71a6 to your computer and use it in GitHub Desktop.
Ignore .idea folder from git in PHPStorm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Make PHPStorm ignore .idea folder | |
|- File > Settings > Version Control > Ignored Files > Add(+) > Ignored all files under > select directory .idea | |
2. Clean PhpStorm Git Cache | |
|- Open Terminal (Left+Down) #> "C:\Program Files (x86)\Git\cmd\git.exe" rm -f --cached .idea/* | |
or | |
|- Open Terminal (Left+Down) #> git rm -f --cached .idea/* | |
3. Reboot PhpStorm | |
\- Done! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great~~
I missed "Reboot Phpstorm"
thanks