Skip to content
This repository has been archived by the owner on Jun 19, 2023. It is now read-only.

Latest commit

 

History

History
76 lines (39 loc) · 2.79 KB

installation.md

File metadata and controls

76 lines (39 loc) · 2.79 KB

GIT INSTALLATION GUIDE

Now that you have installed git on your system, it's time to create your own Github account to get started with using git and GitHub.

GITHUB ACCOUNT CREATION GUIDE

Here are some links for step by step guide to creating your own github account:

Article: https://www.wikihow.com/Create-an-Account-on-GitHub

OR

Video tutorial: https://www.youtube.com/watch?v=2NxsjFtGjBA

LINKING/CONFIGURING GIT AND GITHUB

Once the installation has been completed, the next thing to do is to set up the configuration details of the GitHub user. To do this use the following two commands by replacing "user_name" with your GitHub username and replacing "email_id" with the email id you used to create your GitHub account.

    git config --global user.name "user_name"
    git config --global user.email "email_id"

The following image shows an example of my configuration with my "user_name" being "akshaypai" and my "email_id" being "abc123@gmail.com"

Image of CONFIG CONSOLE

Now you are ready for the workshop!!🚀🚀

See you in session...👩‍💻👨‍💻