- First install Git into your windows machine.Once you install ".exe" file, click on it and install Git on your computer. The steps are simple, it will automatically direct you through the installation process. Simple ! follow the steps,
-
Continue the last two steps and click on "install". Once the installation is completed, open "Git Bash" from "Start" menu in your computer. Once, Git Bash prompt window appears, you can start working on Git. The main tool in Git is git config, you can explore the list of options for using Git Bash by typing git config command in the editor window.
- To get help of using Git, you can simply type
Example: If you want to help with using add in Git, $ git config add
- Connecting to your GitHub account if you have already created a GitHub account in GitHub website
$ git config --global user.name "username"
$ git config --global user.email "youremail"
Ex: $ git config --global user.name "JohnR" and $ git config --global user.email "john@email.com"