If you commit the code to a local github repo with the default user name, you will get the message as shown below: $ git commit MumbaiStock.pm -m v1.5 <enter> [master 24fea3] v1.5 Committer: wronguser <wrongemail@wrongdomain.com> Your name and email address were configured automatically based on your username and hostname. Please check that they are … Continue reading How to amend default user name and email before committing code to remote github repository
Tag: github
How to update or commit code changes from local github repository to repository on github
A user can make changes to code in their local folder (in this case, MumbaiStock) and then update or commit that code into the github repository. Below is the user information: github User ID is userid github User Name is "UserFirstName UserLastName" github User Email is "user@emailsystem.com" To update github or commit code from the … Continue reading How to update or commit code changes from local github repository to repository on github
How to use GIT to publish project / source code to github
Git is a very good tool that allows you to publish your project or source code to the github web repository. It allows others to view your code / project and make changes, with one of the best version control systems around. I will use the MumbaiStock project on github as an example to illustrate … Continue reading How to use GIT to publish project / source code to github