2

是否可以在 Windows 上使用instaweb

我在 D:/myrepo 有一个裸存储库,我想使用instaweb来查看

我试过这个命令

git instaweb --httpd=webrick

但我得到了这个错误

git: 'instaweb' is not a git command. See 'git --help'.

提前致谢。

4

2 回答 2

3

从 1.9.0 版开始,Windows 尚不支持 instaweb 命令。它列在 Windows 发行说明中的​​“已知问题”下:

已知的问题

• 某些命令在 Windows 上尚不支持,并且已从安装中排除;即:git archimport、git cvsexportcommit、git cvsimport、git cvsserver、git instaweb、git shell。

于 2014-03-05T19:46:07.020 回答
1

我在 MSYS2 中使用 git 让它工作:

  1. 安装 MSYS2
  2. 安装 git:

    pacman -S git

  3. 安装 ruby​​(webrick 是 Ruby 标准库的一部分):

    pacman -S ruby

  4. 您可能需要使用 CPAN安装CGI.pm perl 模块

  5. 去:

    git instaweb -d webrick

于 2019-07-24T07:58:30.753 回答