...
Edit the files necessary to resolve the issue.
After making changes, add them to the staging area:
Code Block git add .
Commit the changes with a message referencing the issue:
Code Block git commit -m "Fixes #42: Describe the specific fix here"
Have all commit message start with the issue number they contribute to,
e.g. “#12. Example music code, test missing”.
You’ll see that GitHub than automatically matches commits to issues
4. Push the Branch to the Remote Repository
...