'How do you change a repository description on GitHub?

When you create a repository on GitHub, you can optionally create a description of the repository. Unfortunately, I wrote a description that no longer adequately describes the code in the repo.

How do I change the repo description?



Solution 1:[1]

They changed the looks slightly, the "Edit" button is seen when on the repositories main page, which is the "Code" tab. Here is a screencast/animated-screenshot:

enter image description here

Solution 2:[2]

Click on the Edit that comes when you hover your mouse over the description and project url section

enter image description here

Solution 3:[3]

When you hover over the existing description, an Edit button will appear at the far left.

enter image description here

Solution 4:[4]

Just in case anyone else has a similar issue as me...

You cannot edit the description until one or more files are committed and pushed. In my specific case, I created the repository from IntelliJ IDEA and accidentally filled the description with text I had intended for the first commit. However, I didn't actually commit or push any files.

I went to the repositories page on the GitHub website, where I could see the repository and its description from the repositories page. However, when viewing the individual repository page, the description would not appear and suggestions for setting up the project were the only content displayed. There is no clear indication that you cannot edit the description until a file is uploaded, but once you have done so, the description is clearly displayed and with it a link to edit.

Solution 5:[5]

1.Go into your repository.

2.On the right side About and symbol of setting.

About and Setting

3.Click on the setting.

4.You get Edit repository details.

5.you can change details.

Edit Description

Solution 6:[6]

enter image description here

Click on the gear icon like in the image, and then change your repository description

enter image description here

Click "Save Changes"

Solution 7:[7]

You can do so directly from command-line, without having to interact with GitHub website.

Since the GitHub CLI gh 2.4.0, you can use gh repo edit:

gh repo edit d, --description <string>

# Update the description of the repository

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1
Solution 2 manojlds
Solution 3
Solution 4 Jeremiah Shore
Solution 5 MRUNAL MUNOT
Solution 6 ADITYA DAS
Solution 7 VonC