Answers for "How to delete multiples files in Github"

1

How to delete multiples files in Github

In the command-line, navigate to your local repository.
Ensure you are in the default branch:
git checkout master
The rm -r command will recursively remove your folder:
git rm -r folder-name
Commit the change:
git commit -m “Remove duplicated directory”
Push the change to your remote repository:
git push
Posted by: Guest on September-07-2020

Code answers related to "How to delete multiples files in Github"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language