Is there a way to integrate Git into Windows cmd or PowerShell?

Is there a way to integrate Git into Windows cmd or PowerShell? - so it looks like a Linux terminal. How?

+9
source share
5 answers

Download and install Git as shown in the link . On the sixth slide, "Setting up your PATH environment," check for the option "Run Git and included Unix tools from the Windows command line" and make sure that it is!

+10
source

Ok, I got it myself ...

new-item -path alias:git -value 'C:\Program Files (x86)\Git\bin\git.exe' 
+8
source

This is what I use ...:

gorgeous bastard

+7
source

Simple and clear way:

Walkthrough

essentially

  1. Add Git binaries to the system path
+2
source

Source: https://habr.com/ru/post/911986/


All Articles