12

我正在尝试查找有关 msysgit sh.exe 命令的一些文档。

例如,我知道--login启动 git bash 会话的标志,但我想知道其他可能性。

我查看了互联网,但找不到列出所有可能参数的任何地方。

4

2 回答 2

14
> .\sh.exe --help
GNU bash, version 3.1.0(1)-release-(i686-pc-msys)
Usage:  ".../Git/bin/sh.exe" [GNU long option] [option] ...
        ".../Git/bin/sh.exe" [GNU long option] [option] script-file ...
GNU long options:
        --debug
        --debugger
        --dump-po-strings
        --dump-strings
        --help
        --init-file
        --login
        --noediting
        --noprofile
        --norc
        --posix
        --protected
        --rcfile
        --restricted
        --verbose
        --version
        --wordexp
Shell options:
        -irsD or -c command or -O shopt_option          (invocation only)
        -abefhkmnptuvxBCHP or -o option
Type `".../Git/bin/sh.exe" -c "help set"' for more information about shell options.
Type `".../Git/bin/sh.exe" -c help' for more information about shell builtin commands.
Use the `bashbug' command to report bugs.

另请参阅GNU 网站bash 手册

于 2012-11-05T10:00:52.837 回答
4

来自sh.exe git 命令行工具套件https://git-scm.com/download/win本身是一个 Windows 可执行文件,但可以执行 linux 命令行和 linux shell 脚本。

  • 首先应该设置路径,例如:set PATH=D:\Programs\Gitcmd\bin;%PATH%
  • 也许某些环境变量适合构建$HOME:HOMEDRIVE 和 HOMEPATH。
  • 两者都可以在批处理文件中正确完成。

    sh.exe 
    

    不带参数会打开一个 shell 窗口,尝试输入诸如 'ls'、'whoami' 或 'git' 之类的命令。它应该运行。

    sh.exe -x -c "command arg1 'arg2 with spaces' arg3" 
    

    调用单个 linux 命令,例如sh.exe -x -c "git status"

    sh.exe -x "path/to/scriptfile"
    

    执行该脚本文件。

您可以在http://www.vishia.org/Git/html/Gitcmd.html阅读更多内容

于 2016-08-29T20:35:02.190 回答