projetmbc
projetmbc

Reputation: 1462

Small description on github defined from the terminal

Is it possible to define de small description of a project on github by using a command on my laptop's terminal ?

Upvotes: 1

Views: 19

Answers (1)

Chris
Chris

Reputation: 137215

You can use the edit repository endpoint in the GitHub API:

PATCH /repos/:owner/:repo

Include the required name parameter and the optional description in your request JSON. You will have to authenticate first.

Upvotes: 1

Related Questions