DEV Community

Maxime Guilbert
Maxime Guilbert

Posted on • Edited on

3 1

Windows Terminal - How to add Git (or other kinds of terminal)

Having multiple kinds of terminals in Windows is really helpful for everyday work and productivity.

But how can we add other terminals?


In the Windows Terminal, click on the down arrow then select Settings.

The settings.json file will open in a notepad window.

To add a new terminal, you have to add it in the "profiles" > "list".

{
                "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b9}",
                "name": "Git Bash",
                "commandline": "Path_to_git/Git/bin/bash.exe -i -l",
                "icon": "Path_to_git/Git/mingw64/share/git/git-for-windows.ico",
                "hidden": false
            }
Enter fullscreen mode Exit fullscreen mode

About the guid, just modify it by a random value.

And that's it! Repeat the operation for each terminal you want to add, and you will be able to open tabs with that terminals by clicking on "+".


I hope it will help you!

Don't hesitate to give some feedback to help me to improve my writing skills. Thanks!

Image of Datadog

The Essential Toolkit for Front-end Developers

Take a user-centric approach to front-end monitoring that evolves alongside increasingly complex frameworks and single-page applications.

Get The Kit

Top comments (2)

Collapse
 
danieltallentire profile image
danieltallentire

I love this feature in Windows terminal. I create SSH terminals that connect up to my azure servers.

Collapse
 
mxglt profile image
Maxime Guilbert

Me too. Having all my terminal in one place, it's a dream coming true ^^

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay