Is there a way to integrate Git into the Windows cmd or PowerShell? - so that it feels a bit like a Linux terminal. How?
6 Answers
OK, I got it myself ...
new-item -path alias:git -value 'C:\Program Files (x86)\Git\bin\git.exe'
1 Comment
Haohmaru
or
new-item -path alias:git -value 'C:\Program Files\Git\bin\bash.exe' these daysDownload and install Git as shown in the link. In the sixth slide, 'Adjusting your PATH environment.', check for the option 'Run Git and included Unix tools from the Windows command prompt' and that's it!
Comments
This is what I use: posh-git: a PowerShell environment for Git
It also integrates into the cwd line:
Comments
Check out Posh Git:
