I created a new branch in my local repository and after some commits, I wanted to push it to a remote repository.
git push origin new_branch
I have this error:
$ git push origin new_branch
Counting objects: 32, done.
Delta compression using up to 2 threads. Compression of objects: 100% (18/18), done.
Object spelling: 100% (18/18), 5.29 KiB done. Total 18 (Delta 13), Reused 0 (Delta 0)
Write error: broken pipe
fatal: the far end unexpectedly hung up
fatal: the far end unexpectedly hung up
When I am a user of $ git remote -v
origin git @ 106.187.99.99: XXX.git (sample)
origin git @ 106.187.99.99: XXX.git (push)
git branch
fiberead_com$ git branch -a * new_branch master remotes/origin/HEAD -> origin/master remotes/origin/dev remotes/origin/master remotes/origin/online
nginx.conf
user www-data; worker_processes 1; error_log /var/log/nginx/error.log; pid /var/run/nginx.pid; events { worker_connections 1024;
Can anyone help me please?
My git server is in Linode. I am using GITLAB, and another project does not have this problem. Only a new project, the user of 'git clone' to pull out my computer. But when I click on the code, something is wrong.
I am using Nginx.
And I use the '$ git push origin master', have the same problem.