0% found this document useful (0 votes)
2 views10 pages

Installing Git Windows

This document provides a step-by-step guide for installing Git on Windows, requiring administrator rights. It includes instructions for downloading the software, configuring installation options, and accessing Git Bash and Git GUI post-installation. Additionally, it lists basic Git commands for users to get started with version control.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views10 pages

Installing Git Windows

This document provides a step-by-step guide for installing Git on Windows, requiring administrator rights. It includes instructions for downloading the software, configuring installation options, and accessing Git Bash and Git GUI post-installation. Additionally, it lists basic Git commands for users to get started with version control.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 10

Installing Git on Windows

Procedure:
Please note: You will need administrator’s rights to install the Git software. If you do not have
Administrator’s right, please contact your computer support team.

1. Navigate to http://git-scm.com/
The webpage will auto-detect what operating system. Look for the computer screen on the
right-hand side of the page. Click on Download 2.21.0 for Windows. Your computer should
automatically launch an explorer window and ask you where to save the program on your
computer.

2. Navigate to where you saved the Git program .exe file. Right-click on the file and choose ‘Run as
Administrator’. If asked, enter in administrator credentials. This should launch the installer.

You may receive a security warning about the software being from an unknown publisher. You
can safely ignore this message. Click the Run or Yes button to continue or cancel to exit out of
the installation.

3. The Git License will display. Read through and then Click Next to accept the terms of the license.
4. Choose where Git will be installed. Click Next to choose the default location provided unless
you know you need to install the software somewhere else on your machine.

5. Select the components you want installed along with the Git software. There are already some
default options checked. Make sure to check: Windows Explorer integration, including Git Bash
Here and Git GUI Here. This component will allow you to use the Windows Explorer context
menu to access git Bash and Git Gui. All other options are optional. See screenshot below.
6. Select your Start menu Folder. Choose Next to use the default.

7. Choose which default editor you would like Git to use. For this class, choose ‘Use the Nano
editor by default’ and click Next
8. Choose how you would like to use Git from the command line. You can choose ‘Git from the
command line and also from 3rd-party software’ or ‘Use Git from Git Bash only’ See screenshot.

9. Choose a SSL/TLS library. Select ‘Use the native Windows Secure Channel library. This allows
Git to use the certificates that are native to your machine and may avoid a path problem later
on. See screenshot.
10. Choose an option for how Git should treat line endings in text files. Recommended to keep the
default as this is better if you’re planning on sharing your project with others who may be using
a different operating system. Choose ‘Checkout Windows-style, commit Unix-style line endings’.
See screenshot.
11. Configure your terminal emulator to use with Git Bash. Use the default ‘Use MinTTY’
12. Configure extra options. Check: Enable file system caching and Enable Git Credential Manager

13. Choose Install to start the installation.

14. Check or uncheck the boxes to launch Git Bash or to view the release notes. Click Finish to exit
the installer.

Once installed, you can access Git bash or the Git GUI via two different ways:

1. Open the Start menu, you’ll find a new Git entry with the Git Bash icon

2. Best Way: Navigate to a folder on your machine where you want to use Git

a. Right click inside the folder. You’ll notice two new options in your context menu: Git
Bash and Git Gui . Choose Git Bash.

Either way, you will see the following when you open Git Bash.
Git bash three basic commands:
1. git -–version : This command gives you the current version of git installed in your desktop system.
2. git --help: This command opens the help for understanding and knowing about the commands which
can be used in git.

3. git status : This command gives you the status of you git commit.

4. git init : This command is used to initialize the repository.

You might also like