Thursday 11 November 2021

Git command for remove particular folder in git(bitbucket repo)

GIT COMMAND FOR REMOVING THE FOLDER IN GIT
1. the build is folder name that you want to remove

git rm -r build

or

git rm -rf build


2. commit code with msg

git commit -m "unused code"


3. push your code in git

git push

No comments:

Post a Comment