I\'m new to web development and GitHub. When I commit any changes, these changes are reflected on my GitHub repo under \"unknown (author)\". How do I change this to reflect
Git uses your username to associate commits with an identity.
The git config command can be used to change your Git configuration, including your username.
Here is a good guide available:
https://help.github.com/articles/setting-your-username-in-git/