Don Moore
Don Moore

Reputation: 13

How to not see an old GitHub repo anymore

In my list of repos I have an old repo that I worked on for 1 hr.

I would like to not see it anymore, I would like to not be involved with it anymore, I want it off of my screen.

How do I do it?

Here is a screen of my repo list:

Github print-screen

Upvotes: 0

Views: 447

Answers (2)

Hargun Singh
Hargun Singh

Reputation: 576

I think what you are wanting to ask is how to delete a GitHub repository. Deleting a repository as @Paulpro rightly said will remove all your data from the given account so if you need any data it will be wise to take a backup.

How to delete a Github Account:

  1. Login to your Github Account
  2. Open the repository you wish to delete
  3. On the menu of Repository click on Settings (the menu contains commits, settings, contributors etc.The last tab is settings there.)
  4. Scroll down to the very bottom, the last option will be delete repository, click on that
  5. In a confirmation box that comes enter the repository name as it is and then confirm to delete the repository.

Note These steps are to delete a repository.If you just wish to hide a repository from the public you will need a private repository option which requires a paid Github Account.

Upvotes: 0

Paul
Paul

Reputation: 141839

It sounds like you want to delete the repo. That will completely remove it though, not only from that list. You won't be able to access it again.

You might want to save of backup first if there is any chance you will want to access it later, especially if the work you did hasn't been pushed into the project that you forked it from.

You can delete a repo by going to the "Settings" page for that repo (click on the repo in that list and "Settings" is a tab on the next page), then scrolling all the way to the bottom and clicking on "Delete this repository".

Upvotes: 1

Related Questions