如何从命令提示符中打开git-bash.exe,以使其执行“ git状态”。自动等待下一个命令而不是退出

发布于 2025-01-20 14:06:12 字数 298 浏览 0 评论 0原文

我如何创建一个打开git-bash.exe并在启动时自动运行“ git状态”和/或“ git worktree list”的git式快捷方式,然后等待我的下一个命令(s)。我已经尝试过:

  • “。\ git-bash.exe” -c“ git状态”,但是执行git状态后,git-bash窗口立即关闭

  • ”。\ \ git-bash.exe” - c“ git状态;读”,但是这样它运行git状态,等待输入键并关闭git-bash窗口

How can I create a git-bash shortcut which opens git-bash.exe and automatically runs "git status" and/or "git worktree list" at startup and then waits for my next command(s). I have tried:

  • ".\git-bash.exe" -c "git status" but the git-bash window closes immediately after executing git status

  • ".\git-bash.exe" -c "git status;read", but this way it runs git status, waits for the enter key and closes the git-bash window

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

可爱咩 2025-01-27 14:06:12

您可以在Git命令退出后附加命令“ Exec $ shell”来产生新的交互式外壳。例如:

".\git-bash.exe" -c 'git status;exec $SHELL'

You can append the command 'exec $SHELL' to spawn a new interactive shell after your git commands exit. For example:

".\git-bash.exe" -c 'git status;exec $SHELL'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文