Answers for "phpstorm remove file from vcs"

0

phpstorm remove file from vcs

# Remove the file from the repository
git rm --cached .idea/

# now update your gitignore file to ignore this folder
echo '.idea' >> .gitignore

# add the .gitignore file
git add .gitignore

git commit -m "Removed .idea files"
git push origin <branch>
Posted by: Guest on February-22-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language