-
Here are a few links to help you install git bash on your linux system:
https://git-scm.com/download/linux
OR
https://www.atlassian.com/git/tutorials/install-git#linux
NOTE: Make sure to check the installation of git on your system by running the following command on the shell after the installation process:-
git --version
git --version
tells you the Git version currently installed on a system. It is also a confirmation that Git is installed. -
Here are a few links to help you install git bash on your Windows system:
https://phoenixnap.com/kb/how-to-install-git-windows
OR
https://www.stanleyulili.com/git/how-to-install-git-bash-on-windows/
NOTE: Make sure to check the installation of gitbash on your system by running the following command on Windows Command Prompt or Powershell after clicking FINISH on the installation process:-
git --version
git --version
tells you the Git version currently installed on a system. It is also a confirmation that Git is installed. -
Here are a few links to help you install git bash on your macOS system:
https://git-scm.com/download/mac
OR
https://www.atlassian.com/git/tutorials/install-git#mac-os-x
NOTE: Make sure to check the installation of git on your system by running the following command on the shell after the installation process:-
git --version
git --version
tells you the Git version currently installed on a system. It is also a confirmation that Git is installed.
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.
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
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 "imanishbarnwal@gmail.com"
Here's the dowloading link: https://code.visualstudio.com/download