Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can't find the command. I tried Googling "git 'delete a repository'".

share|improve this question

4 Answers

up vote 57 down vote accepted

Delete the .git directory in the root-directory of your repository if you only want to delete the git-related information (branches, versions).

If you want to delete everything (git-data, code, etc), just delete the whole directory.

share|improve this answer

In the repository directory you remove the directory named .git and that's all :). On Un*x it is hidden, so you might not see it from file browser, but

cd repository-path/
rm -r .git

should do the trick.

share|improve this answer

To piggyback on rkj's answer, to avoid endless prompts (and force recursively) do from the project folder:

$ rm -rf .git

Then from the same ex-repository folder, to see if hidden folder .git is still there:

$ ls -lah

If it's not the congratulations, you've deleted your local git repo, but not a remote one if you had it. You can delete GitHub repo on their site (github.com).

To view hidden folders in Finder (Mac OS X) execute these two commands in your terminal window:

defaults write com.apple.finder AppleShowAllFiles TRUE
killall Finder

Source: http://lifehacker.com/188892/show-hidden-files-in-finder.

share|improve this answer
1  
It's not only to avoid prompts, rm -rf was necessary for me otherwise rm would not delete files and complain: rm: cannot remove `.git/objects/pack': Directory not empty – Étienne Apr 24 at 13:38
Yes, -r is for recursive and -f is for force. So you are forcing and doing recursive deletion. – Azat May 7 at 21:53
I'd actually suggest deleting .git* to also remove .gitignore and .gitmodules if any. – aragaer May 7 at 22:14

That's right, if you're on a mac(unix) you won't see .git in finder(the file browser). You can follow the directions above to delete and there are git commands that allow you to delete files as well(they are sometimes difficult to work with and learn, for example: on making a 'git rm -r ' command you might be prompted with a .git/ not found. Here is the git command specs:

usage: git rm [options] [--] ...

-n, --dry-run         dry run
-q, --quiet           do not list removed files
--cached              only remove from the index
-f, --force           override the up-to-date check
-r                    allow recursive removal
--ignore-unmatch      exit with a zero status even if nothing matched

When I had to do this, deleting the objects and refs didn't matter. After I deleted the other files in the .git, I initialized a git repo with 'git init' and it created an empty repo.

share|improve this answer
1  
That's not 100% true. I'm on Mac OS X and I can see .git and other hidden/system folder easily (e.g., .DS_Store). All you need to do is to configure Finder. Here is how: lifehacker.com/188892/show-hidden-files-in-finder. defaults write com.apple.finder AppleShowAllFiles TRUE and then killall Finder. – Azat May 7 at 21:57
Yes that's right, you can configure finder to show hidden files, as well as you can configure editors to show hidden folders. The lesson here is that everything that begins with a '.' is a usually a hidden folder/file. – LucianNovo May 8 at 6:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.