Skip to content

Latest commit

 

History

History
80 lines (41 loc) · 2.85 KB

installation.md

File metadata and controls

80 lines (41 loc) · 2.85 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 "imanishbarnwal" and my "email_id" being "[email protected]"

Image of CONFIG CONSOLE

Download & Install VS Code

Here's the dowloading link: https://code.visualstudio.com/download

Now you are ready for the workshop!!🚀🚀

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