6
I signed Ionic Pro and I’m trying to send my local project to their Cloud.
I use the command:
git push ionic master
It starts all right but makes the mistakes to follow:
git push ionic master
Enter passphrase for key 'C:\Users\Ramos\.ssh\ionic\278626':
Counting objects: 2049, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (1996/1996), done.
fatal: Timeout reached(560/2049), 82.85 MiB | 113.00 KiB/s
fatal: The remote end hung up unexpectedlyB | 98.00 KiB/s
fatal: sha1 file '<stdout>' write error: Broken pipe
fatal: The remote end hung up unexpectedly
How can I solve?
EDITED: What I’ve done so far.
I created . gitignore with directories that don’t need:
Platforms/ xdk/ node_modules/ Hooks/ .vs/ tern-defs/ git./
I edited the SSH configuration file (HOME.ssh config) as in the first reply.
I added the following commands:
set GIT_TRACE_PACKET=1 set GIT_TRACE=1 set GIT_CURL_VERBOSE=1
But the error continues, so:
Counting objects: 2072, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (2016/2016), done.
fatal: Timeout reached(2039/2072), 80.37 MiB | 93.00 KiB/s
Wfriting objects: 98% (2039/2072), 80.50 Miatal: The remote end hung up unexpectedly
fatal: sha1 file '<stdout>' write error: Broken pipe
fatal: The remote end hung up unexpectedly
The Ionic people so far only said to create the . gitignore that had already done and see the connection with internet, which is good....
Did you create . gitignore before or after the commit? Because if it was after, node_modules is still trackeado..
– BrTkCa
Try
git rm -r --cached .
<- do not forget the point it is part of the command, commit and try to push.– NoobSaibot