Skip to content

Instantly share code, notes, and snippets.

View godswillokokon's full-sized avatar
🏠
Working from home

OG godswillokokon

🏠
Working from home
View GitHub Profile
@gjerokrsteski
gjerokrsteski / remove env file from git forever
Last active May 12, 2024 16:25
remove env file from git history forever
echo '.env' >> .gitignore
git rm -r --cached .env
git add .gitignore
git commit -m 'untracking .env'
git push origin master