Answers for "remote remove folder git"

7

remove remote git

# The example will remove the github remote. 
# Note that the command will not delete the repository, 
# just the local reference.
git remote rm origin
Posted by: Guest on May-29-2020
0

remove folders from remote git

git rm -r --cached FolderName
git commit -m "Removed folder from repository"
git push origin master
Posted by: Guest on October-13-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language