.env added in gitignore but still showing , SOLUTION
Copy Below Code
View As A Text File
Show Text Only
Show API
Edit Code
This happens sometimes , its becuase Git cache some files , therefore they show , to remove such files are directory use
-- git rm .env --cached // for single file
-- git rm r storage/ --cached // for a folder
-- git commit -m "stop tracking cached file"
Cheers :)