Windows 批处理脚本:在特定位置打开 Git Bash

问题描述 投票:0回答:1

需要在特定位置打开git bash,就像右键单击文件夹并选择“Git Bash Here”一样。

start C:\"Program Files"\Git\git-bash.exe

应该向这一行添加什么,以便 bash 在特定目录中打开?

batch-file
1个回答
0
投票

试试

@echo off
cd "C:\PATH\TO\YOUR\DIRECTORY"
start "" "C:\Program Files\Git\bin\bash.exe" --login -i
© www.soinside.com 2019 - 2024. All rights reserved.