Answers for "remove git local"

9

git remove repository local

$ rm -rf .git
Posted by: Guest on July-31-2020
37

git delete branch

## git version 2.25.1

## Deleting local branches
git branch -d localBranchName
## Deleting remote branches
git push origin --delete remoteBranchName

## Deleting both a local and a remote branch
## They are completely separate objects in Git. But
git branch -d localBranchName && git push origin --delete remoteBranchName
Posted by: Guest on June-28-2020
2

how to delete git repo locally

$ rm -rf .git


to delete git repository from local repo (from machine)
Posted by: Guest on October-13-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language