Answers for "remove git repository"

13

delete .git folder

rm -rf .git
Posted by: Guest on April-01-2020
9

git remove repository local

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

how to remove git from project

rm -rf .git*
Posted by: Guest on March-29-2020
1

remove git repository

On Windows:
Go to the directory where you want to delete your .git folder then type in cmd

rmdir /S .git.
Posted by: Guest on August-11-2021
17

how to delete repository in github

#step by step Process
>> Login github 
>> Profile # right side of the page profile icon
>> Your repositories 
>> Select repositories 
>> Goto Settings # repository level settings
>> Delete this repository
>> Please type <repository name> to confirm.
Posted by: Guest on December-11-2020

Code answers related to "remove git repository"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language