在shell中找不到git-remote-http命令,为什么会有这个过程?
我只打开了一个git svn进程,为什么会有这么多git相关进程?
[mirror@home git]$ pgrep git
12035
12036
22308
22309
22394
22397
24128
24129
26136
26137
[mirror@home git]$ pgrep git -lf
12035 git fetch origin
12036 git-remote-http origin http://git.savannah.gnu.org/r/weechat.git/
22308 git svn clone http://code.taobao.org/svn/obconnector/
22309 /usr/bin/perl /home/mirror/ins_git/libexec/git-core/git-svn clone http://xxx.org/svn/xxx/
22394 git update-index -z --index-info
22397 git hash-object -w --stdin-paths --no-filters
24128 git fetch origin
24129 git-remote-http origin http://git.xxx.org/xxx.git/
26136 git fetch origin
26137 git-remote-http origin http://git.xxx.org/xxx.git/
发布于 2012-09-05 14:20:38
每个http请求有一个单独的过程。有许多客户端请求该服务,因此有许多git进程。
https://stackoverflow.com/questions/12274751
复制相似问题