How to install & configure Git Bash on Windows 10/11 desktop machine?

How to install & configure Git Bash on Windows 10/11 desktop machine?

    If you have a host machine that runs Windows 10 or Windows 11 operating system, then you need to install Git Bash to run simple Linux commands. Now, let's see how to do Git Bash installation on Windows host machine.
  1. Download the latest Git Bash installer.
  2. Open the installer, proceed with Next and Finish prompts to install Git Bash.
  3. Open the Git Bash terminal as administrator and run below commands to configure your username and email address.
# Set your name globally in Git.
$ git config --global user.name "<YOUR_NAME>"

# Set your email globally in Git.
$ git config --global user.email "<YOUR_EMAIL>"

    • Related Articles

    • How to load multiple Git Bash tabs using Windows Terminal app?

      The Windows Terminal application is a modern and versatile command-line interface for Windows operating systems. It supports multiple tabs within a single window, enabling users to work with different command-line sessions simultaneously. Note: The ...
    • How to install Vagrant on Windows 10/11 desktop machine?

      If you have a host machine that runs Windows 10 or Windows 11 operating system, then you need to install Vagrant to automate and manage virtual machines. Now, let's see how to do Vagrant installation on Windows host machine. Download the latest ...
    • How to install VirtualBox on Windows 10/11 desktop machine?

      Install VirtualBox on Windows operating system If you have a host machine that runs Windows 10 or Windows 11 operating system, then you need to install VirtualBox to build and run virtual machines. Now, let's see how to do VirtualBox installation on ...
    • How to install Git on Ubuntu Linux 18.04 desktop machine?

      Here, we install Git using system package manager. This is most recommended way of installing Git on Ubuntu Linux operating system. No matter how we install Git, its just a command line utility. Once the installation is done, you need to verify Git ...
    • How to install Vagrant on Ubuntu Linux 18.04 desktop machine?

      If you have a host machine that runs Ubuntu Linux operating system, then you need to install Vagrant to automate and manage virtual machines. Now, let's see how to do Vagrant installation on Linux host machine. # Download Vagrant. $ wget ...