Please note, this is a STATIC archive of website www.simplilearn.com from 27 Mar 2023, cach3.com does not collect or store any user information, there is no "phishing" involved.
Git Installation on Windows: A (Step-by-Step) Guide

Git is a DevOps tool for source code management—an open-source version control system (VCS) used to handle small to very large projects efficiently. Git is used to tracking changes in the source code, supporting non-linear development so that multiple developers can work together in near real-time.

In this Git Installation on Windows article, you will find a step-wise guide to Git installation on Windows 10. Let’s get started.

Choose the Best for Your Career!

Caltech Program in DevOpsExplore Program
Choose the Best for Your Career!

Git Installation on Windows

Let us now look at the various steps in the Git installation on Windows.

Step 1:

Download the latest version of Git and choose the 64/32 bit version. After the file is downloaded, install it in the system. Once installed, select Launch the Git Bash, then click on finish. The Git Bash is now launched.

Git Installation

Step 2:

Check the Git version:

$ git --version

Step 3:

For any help, use the following command:

$ git help config

This command will lead you to a browser of config commands. Basically, the help the command provides a manual from the help page for the command just following it (here, it's config).

Another way to use the same command is as follows:

$ git config --help

Step 4:

Create a local directory using the following command:

$ mkdir test

$ cd test

Step 5:

The next step is to initialize the directory:

$ git init

Learn Professional DevOps Skills with Caltech CTME

Free Webinar | 28 March, Tuesday | 9 PM ISTRegister Now!
Learn Professional DevOps Skills with Caltech CTME

Get the Coding Skills You Need to Succeed

Full Stack Development-MEANExplore Program
Get the Coding Skills You Need to Succeed

Step 6:

Go to the folder where "test" is created and create a text document named "demo." Open "demo" and put any content, like "Hello Simplilearn." Save and close the file.

Step 7:

Enter the Git bash interface and type in the following command to check the status:

$ git status

Step 8:

Add the "demo" to the current directory using the following command:

$ git add demo.txt

Step 9:

Next, make a commit using the following command:

$ git commit -m "committing a text file"

Step 10:

Link the Git to a Github Account:

$ git config --global user.username

Note: simplilearn-github is the username on the Github account.

Step 11:

Open your Github account and create a new repository with the name "test_demo" and click on "Create repository." This is the remote repository. Next, copy the link of "test_demo."

Step 12:

Go back to Git bash and link the remote and local repository using the following command:

$ git remote add origin <link>

Here, <link> is the link copied in the previous step.

Learn From The Best Mentors in the Industry!

Automation Testing Masters ProgramExplore Program
Learn From The Best Mentors in the Industry!

Step 13:

Push the local file onto the remote repository using the following command:

$ git push origin master

Step 14:

Move back to Github and click on "test_demo" and check if the local file "demo.txt" is pushed to this repository.

Additional Customization Options

  1. This option enables users to add extra elements such as symbolic links for command lines. Nevertheless, one should always prefer default options for shortcuts or more. 
  2. There are some experimental options available such as pseudo control Support or Built in file system monitor concerning your installed Git version.  

How to Launch Git in Windows?

There are two methods to launch git in windows. One is launching git using a bash scripting shell with the help of the command line and another is launching git using a graphical user interface. 

  1. To launch git via bash scripting shell,
    First, open the window and search for git bash and open it.
  2. To launch git via graphical user interface(GUI), similarly, first open the window and search for git GUI and click on the application icon and open it. 

Prepare to Answer all the Questions!

Caltech Program in DevOpsExplore Program
Prepare to Answer all the Questions!

Configure GitHub Credentials

You can configure your local GitHub installation with credentials by using the following commands. Also, don't forget to add your own GitHub credentials for username and email address. 

  1. git config –global user.n
    ame "github_username" 
  2. git config –global user.e
    mail "email_address"

Clone a GitHub Repository

  1. Initially you need to click the options repository on GitHub. 
  2. Then in the top right corner, click the option clone or download where a small drop-down box will appear having a URL for cloning over HTTPS. 
  3. Then enter into your Powershell windows and write clone URL as:
    git clone repository_url 
  4. On the other hand, you can clone a github repository with SSH URLs where first you need to generate an SSH key pair on your windows workstation as well as need to assign a public key to your GitHub account. 

List Remote Repositories

  1. Make a copy of the repository from GitHub for your working directory. 
  2. Ensure that the working directory should have the project name as
    "cd git_project" and replace the project name from the downloaded repository. 
  3. If the above option doesn't work, you can list the content using "ls command" for the current directory, especially to check your exact number of spellings. 
  4. Besides, you can list the remote repository in the sub-directory as "git remote -v". 

Boost Your Coding Skills. Nail Your Next Interview

Full Stack Development-MEANExplore Program
Boost Your Coding Skills. Nail Your Next Interview

Summary: Steps For Git Installation on Windows 10

  1. Download and install Git
  2. Git bash interface
  3. Basic Git commands
  4. Create a local repository
  5. Connect to the remote repository
  6. Push the file to GitHub

Become a DevOps Expert

Are you preparing for a career in DevOps? Check out Simplilearn's DevOps Engineer Master's Program or the DevOps Certification Training Course that bridges the gap between software developers and operations. You can become an expert in the principles of continuous development and deployment, automation of configuration management, inter-team collaboration, and IT service agility, using modern DevOps tools such as Git, Docker, Jenkins, Puppet, and Nagios. DevOps jobs are highly paid and in great demand, so start on your path today.

Prepare Yourself to Answer All Questions!

Automation Testing Masters ProgramExplore Program
Prepare Yourself to Answer All Questions!

About the Author

Sayeda Haifa PerveezSayeda Haifa Perveez

Haifa Perveez is passionate about learning new technologies and working on them. She is an engineer who loves to travel, read and write. She's always curious about things and very determined to track the latest technologies and the trends that they are creating for the future.

View More
  • Disclaimer
  • PMP, PMI, PMBOK, CAPM, PgMP, PfMP, ACP, PBA, RMP, SP, and OPM3 are registered marks of the Project Management Institute, Inc.