Answer the question
In order to leave comments, you need to log in
How to catch a glitch with git push?
It works absolutely fine from the repository git pull
, but I can only send 3-4 files in a commit, otherwise the commit simply does not go away. It looks like this
$ git push origin branch_name
Подсчет объектов: 11, готово.
Delta compression using up to 8 threads.
Сжатие объектов: 100% (11/11), готово.
Запись объектов: 100% (11/11), 1.40 KiB | 0 bytes/s, готово.
Total 11 (delta 9), reused 0 (delta 0)
echo 'ssh -vvv $*' > ssh && chmod +x ssh
GIT_SSH="$PWD/ssh" git pull origin master
GIT_SSH="$PWD/ssh" git push origin branch_name
Подсчет объектов: 18, готово.
Delta compression using up to 8 threads.
Сжатие объектов: 100% (18/18), готово.
Запись объектов: 100% (18/18), 3.16 KiB | 0 bytes/s, готово.
Total 18 (delta 6), reused 0 (delta 0)
debug2: channel 0: read<=0 rfd 5 len 0
debug2: channel 0: read failed
debug2: channel 0: close_read
debug2: channel 0: input open -> drain
debug2: channel 0: ibuf empty
debug2: channel 0: send eof
debug3: send packet: type 96
debug2: channel 0: input drain -> closed
debug2: channel 0: input drain -> closed
the process goes further, remote etc, and here it just stops and there is no hint of a reason. GIT_TRACE=1 git push origin
also showed no deviations at all, until the Total 11 (delta 9), reused 0 (delta 0)
process goes on, and then stops, I have to stop after ^C
.
Answer the question
In order to leave comments, you need to log in
It's most likely a communication problem.
Try checking with https://confluence.atlassian.com/bbkb/troubleshoot...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question