前言全局说明
Windows bat批处理启动git bash 自动提交git push
一、说明
环境:
Windows 11 家庭版 23H2 22631.3737
二、新窗口打开 git bash
(和手动右键点git bash here 一样)
@echo off
"C:\Program Files\Git\git-bash.exe" --cd=D:\temp -c "ls -l && pwd"
--cd= 指定启动目录,默认路径:命令执行的当前文件夹
-c "ls -l && pwd" 要执行的命令,多个命令用双引号括起来,并用 && 分割 (用Linux语法)
三、当前终端窗口打开
@echo off
"C:\Program Files\Git\bin\bash.exe" --cd=D:\temp
四、
4.1
文件名:
4.2
文件名:
免责声明:本号所涉及内容仅供安全研究与教学使用,如出现其他风险,后果自负。
参考、来源:
https://blog.csdn.net/onlyAngel521/article/details/121268315
https://geek-docs.com/git/git-questions/1689_git_how_to_launch_git_bash_from_windows_command_line.html
https://geek-docs.com/git/git-questions/246_git_enabling_git_in_windows_10_command_line.html