How to delete remote repository on github?

GithubRepository

Github Problem Overview


I want to know how to delete repo in github account. I cannot see any indicators to delete on github interface.

Github Solutions


Solution 1 - Github

You can go to the main page of the repository and under your repository name, click "Settings"...

Repo Settings tab

...and scroll down to the "Danger Zone"

The Danger Zone

Solution 2 - Github

Go to the settings page of your repo and the bottom you can find the "Delete this repository" button under the Danger Zone area. Enter your repository name to confirm the deletion and click "I understand the consequences, delete this repository" to confirm the operation. The url will endup like below if you visit the settings page of you repository,

https://github.com/GITHUB_USERNAME/REPOSITORY_NAME/settings

For example, if your name is john and have a repository named "sample_john" the url would look like this,

https://github.com/john/sample_john/settings

Warning: Doing the above operation will permanently delete your repository, wiki, issues, and comments, and remove all collaborator associations.

Solution 3 - Github

You might also want to delete repo from your .git/config file

git remote rmalias or origin” 

Hope this helps

Solution 4 - Github

you can use following shell command tools to delete remote repository on github https://github.com/dfyfhqsfly/github-delete-reponsities.git

Solution 5 - Github

Adding and Remove your remote repository from git hub:

git remote add origin https://github.com/saikumarputta/TodoApi.git

git remote remove origin

Solution 6 - Github

1.Navigate to Your Repository

2.click on Settings (under deleted repository)

3.scroll down to the end of the page, got to "Danger zone" Section

4.click on DELETE THIS REPOSITORY

5.Re-enter the repository name for confirmation.

6.delete

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionErghView Question on Stackoverflow
Solution 1 - GithubAgustínView Answer on Stackoverflow
Solution 2 - GithubLuckyView Answer on Stackoverflow
Solution 3 - GithubDaviiidView Answer on Stackoverflow
Solution 4 - GithubgeniusView Answer on Stackoverflow
Solution 5 - GithubSaiPuttaView Answer on Stackoverflow
Solution 6 - Githubrajeswari eswariView Answer on Stackoverflow