Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

remove .idea folder from git

Blacklist the .idea folder by adding the “.idea” folder to the .gitignore file in master, 
then commit this change.
In your branch, check this file out from master. 
git checkout master -- .gitignore
Remove the .idea folder from the git tree
git rm --cached -r .idea

and commit this change to your branch.
Comment

remove .idea from git

for reference : https://www.david-merrick.com/2017/08/04/how-to-remove-the-idea-folder-from-git/
Comment

PREVIOUS NEXT
Code Example
Shell :: generate ssh key 
Shell :: make file powershell 
Shell :: add credentials git linux 
Shell :: how to run shell script 
Shell :: git squash 
Shell :: install aws cli version 2 mac 
Shell :: postgres users can login with any or no password 
Shell :: iptables remove docker rules 
Shell :: ubuntu find folder through terminal 
Shell :: replace delimiter for enter command 
Shell :: run speedtest command line mac 
Shell :: iis restart cfrom command promt windows 
Shell :: discard all changes 
Shell :: unable to find docker images locally 
Shell :: react hook install 
Shell :: delete git stash list 
Shell :: clone gitlab repo using personal acess token 
Shell :: push existing repo 
Shell :: how to install redis on windows 10 
Shell :: add ssh keys to github 
Shell :: wsl directory 
Shell :: git bash posh git 
Shell :: docker build 
Shell :: check gcc version in ubuntu 
Shell :: command to stop a system service 
Shell :: check disk space folders linux 
Shell :: how to delete last push github 
Shell :: docker Error: no space left on device 
Shell :: git change message specific commit 
Shell :: git aliases 
ADD CONTENT
Topic
Content
Source link
Name
7+7 =