Created
October 2, 2017 06:02
-
-
Save indrapermana/e842012bfa9f85e238704613c6ed2833 to your computer and use it in GitHub Desktop.
Remove folder from git repository
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
#add [folder name] to .gitignore file | |
git rm -r --cached [folder name] | |
git commit -m 'Removing the folder for ignored!' | |
git push origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment