Home > Net >  Trouble with Description naming GITHUB
Trouble with Description naming GITHUB

Time:02-19

Hi i new to Git bash and currently i had some difficulties it seem i can't change the description of the File on the git hub i think on the git bash i click on git commit -m 'initial commit' and now the description say's Initial commit as the description here i upload an image of it the Yellow highlight how do i change it ? the Yellow highlight how do i change it ? i try to search it on google but it gave me nothing. Yellow Highlight

CodePudding user response:

The string you write inside the "" after the message argument -m is the description which will appear in the place.

You may change it to the desired string of your choice.
Eg : git commit -m "<Your description>"

Reference : https://git-scm.com/book/en/v2

  • Related