Horje
git remove folder from repository Code Example
remove git from folder
rm -rf .git*
git remove folder remotely
git rm -r --cached <folder>
git commit -m "Removed Folder"
git push origin master
git remove folder from repository
# the -r option will recursively delete the folder
git rm -r folder-name
# commit changes
git commit -m "Remove duplicated directory"
git - Remove folder
git rm -r test_dir
Source: tecadmin.net
remove folders from remote 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)




Shell

Related
angular new component Code Example angular new component Code Example
create chrome and firefox extension in react Code Example create chrome and firefox extension in react Code Example
rollback git Code Example rollback git Code Example
uninstall tensorflow colab Code Example uninstall tensorflow colab Code Example
Install cassandra Code Example Install cassandra Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9