File size: 258 Bytes
04da94d
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
# Caminho para o executável do Git Bash
$gitBash = "C:\Program Files\Git\bin\bash.exe"

# Diretório onde o comando foi executado
$cwd = (Get-Location).Path

# Abre o Git Bash nesse diretório
Start-Process -FilePath $gitBash -WorkingDirectory $cwd