Я пытаюсь решить следующую проблему:
$ git pull
2 [main] git 8728 fork: child -1 - died waiting for longjmp before initial
ization, retry 10, exit code 0xC0000135, errno 11
error: cannot fork() for rev-list: Resource temporarily unavailable
error: could not run rev-list
remote: Counting objects: 43, done.
remote: Compressing objects: 100% (31/31), done.
remote: Total 31 (delta 22), reused 0 (delta 0)
1301582 [main] git 8728 fork: child -1 - died waiting for longjmp before initial
ization, retry 10, exit code 0xC0000135, errno 11
error: cannot fork() for unpack-objects: Resource temporarily unavailable
fatal: fetch-pack: unable to fork off unpack-objects
Согласно поиску в Google, мне нужно каким-то образом запустить rebaseall из моей оболочки cygwin.Вот что я сделал:
Из sytem32 / cmd.exe (меню «Выполнить» и ввод «cmd») я выполняю:
cd \cygwin\bin
dash
PATH=. rebaseall -v
Я получаю:
$ ./rebaseall -v
rebaseall: only ash or dash processes are allowed during rebasing
Exit all Cygwin processes and stop all Cygwin services.
Execute ash (or dash) from Start/Run... or a cmd or command window.
Execute '/bin/rebaseall' from ash (or dash).
Хорошо, попробуйте еще раз, используя: C: \ Windows \ SysWOW64 \ cmd.exe:
Microsoft Windows [version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. Tous droits réservés.
C:\Windows\SysWOW64>cd c:\
c:\>cd cygwin
c:\cygwin>cd bin
c:\cygwin\bin>ash
$ ./rebaseall -v
rebaseall: only ash or dash processes are allowed during rebasing
Exit all Cygwin processes and stop all Cygwin services.
Execute ash (or dash) from Start/Run... or a cmd or command window.
Execute '/bin/rebaseall' from ash (or dash).
Как я могу:
- Решить мою первоначальную проблему
- Запустить эту штуку "rebaseall"?
Спасибо