Hapus git dari folder
rm -rf .git*
Lovely Louse
rm -rf .git*
git rm -r --cached <folder>
git commit -m "Removed Folder"
git push origin master
# the -r option will recursively delete the folder
git rm -r folder-name
# commit changes
git commit -m "Remove duplicated directory"
sql
git rm -r one-of-the-directories // This deletes from filesystem
git commit . -m "Remove duplicated directory"
git push origin <your-git-branch> (typically 'master', but not always)
rm -r yourfolder/.git/
git rm -r one-of-the-directories // This deletes from filesystem
git commit . -m "Remove duplicated directory"
git push origin <your-git-branch> (typically 'master', but not always)