Edit comments next to each file/directory

49 Views Asked by At

How can I edit those comments next to each file or directory? I can't find anything relevant when searching online.

1

1

There are 1 best solutions below

2
On BEST ANSWER

This comments are the commits comments.

You can edit the comments that has not been pushed online (not your case) with :

git commit --amend

If you have pushed your commits you will have to force push a commit with an amended message:

git push --force example-branch

Docs:

  • Here's a link with a good github article explaining this.
  • Git-commit oficial docs.