Created
April 27, 2023 06:43
-
-
Save vigindian/83240e06820a272158cdff8f561257c0 to your computer and use it in GitHub Desktop.
Remove files from git repo, that have been added to .gitignore after git upload
This file contains 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
#remove files from git repo, that have been added to .gitignore after git upload | |
git rm -r --cached . && git add . && git commit -am "Remove ignored files" | |
git push |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment