如何从命令提示符中打开git-bash.exe,以使其执行“ git状态”。自动等待下一个命令而不是退出
我如何创建一个打开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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在Git命令退出后附加命令“ Exec $ shell”来产生新的交互式外壳。例如:
You can append the command 'exec $SHELL' to spawn a new interactive shell after your git commands exit. For example: