Last active
October 4, 2021 12:31
-
-
Save gjerokrsteski/e184aefc049582904afe32b35fb567bd to your computer and use it in GitHub Desktop.
remove the .idea folder from git
This file contains hidden or 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
echo .idea >> .gitignore | |
git rm -r --cached .idea | |
git add .gitignore | |
git add -u .idea/ | |
git commit -m "remove the .idea folder" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment