Install Git on Windows
- Download the latest Git for Windows installer(https://gitforwindows.org/).
- After downloading, a Git Setup wizard screen will appear. Follow the Next and Finish prompts to complete the installation.
- Open a Command Prompt and run the following commands to configure your Git username and email using the following commands: $ git config --global user.name "Username" $ git config --global user.email "Email Id"
Install Git on Mac OS
- Download the latest Git for Mac installer(https://sourceforge.net/projects/git-osx-installer/files/).
- Open a terminal and verify the installation was successful by running this command: $ git --version
- Configure your Git username and email using the following commands: $ git config --global user.name "Username" $ git config --global user.email "Email Id"
Install Git on Linux
- Open command line, install Git using below command: $ sudo apt-get update $ sudo apt-get install git
- Verify the installation was successful by running this command: $ git --version
- Configure your Git username and email using the following commands: $ git config --global user.name "Username" $ git config --global user.email "Email Id"
Some Git Installation Videos : For Windows: https://www.youtube.com/watch?v=2j7fD92g-gE For Linux: https://www.youtube.com/watch?v=PLQQ3tJwBJg For Mac OS: https://www.youtube.com/watch?v=ZM3I16Z-lxI