+1 vote
in Bitbucket by
How to remove a directory from git?

1 Answer

0 votes
by

You can use the below command to remove the directory from the git repository but not from the local file system.

git rm -r –cached myFolder

...