Reputation: 1462
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
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