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

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 Windows Terminal application is applicable for Windows 10 version 19041.0 or later. It can be obtained from the App Store. It is a free app developed by Microsoft Corporation.

Install Windows Terminal

  1. Navigate to the App Store and search for "Windows Terminal."  Alternatively, click the application link.
  2. Select the "Install" button to finalize the installation process.
            


Add GitBash profile

  1. Launch Windows Terminal with Administrator privileges, then access the settings. 
  2. Choose "Add a new profile" from the left-side menu.
  3. Use the provided values below to successfully create the profile.
    Name: Git Bash
    Command Line: C:/Program Files/Git/bin/bash.exe -i -l
    Starting Directory: %USERPROFILE%
    Icon: C:/Program Files/Git/mingw64/share/git/git-for-windows.ico
    Run this profile as Administrator: True
      4. Finally, open Windows Terminal and pick the GitBash profile across multiple tabs. 
          

    • Related Articles

    • 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. Download the latest Git Bash ...
    • 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 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 use terminal-based text editors in Linux machine?

      Vim Edit: i Copy: CTRL+SHIFT+C Paste: CTRL+SHIFT+V Command: ESC Exit without saving: ESC - :q! - ENTER Save and exit: ESC - :wq - ENTER Nano Copy: CTRL+SHIFT+C Paste: CTRL+SHIFT+V Exit without saving: CTRL+X - SHIFT+N - ENTER Save and exit: CTRL+X - ...