1. 程式人生 > >git push提示錯誤Write failed: Broken pipe解決

git push提示錯誤Write failed: Broken pipe解決

第一次git提交程式碼到github遇到錯誤:

[[email protected] tx2440a]# git push origin master

Counting objects: 76779, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (75565/75565), done.
Write failed: Broken pipe76779)   
fatal: The remote end hung up unexpectedly

error: failed to push some refs to '

[email protected]:gitlao/tx2440a.git'

檢查許可權沒有問題:

[[email protected] tx2440a]# ssh -T [email protected]
Warning: Permanently added the RSA host key for IP address '52.74.223.119' to the list of known hosts.

Hi gitlao! You've successfully authenticated, but GitHub does not provide shell access.

網上找了一下,應該是ssh超時時間問題,我提交的程式碼太多導致超時了。

修改自己 root 目錄下的.bash_profile檔案,加上 
export TMOUT=1200 (以秒為單位) 
然後執行:

source .bash_profile

重新提交,成功:

[[email protected] tx2440a]# git push origin master
Counting objects: 76779, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (75565/75565), done.
Writing objects: 100% (76779/76779), 186.89 MiB | 545.00 KiB/s, done.
Total 76779 (delta 7507), reused 0 (delta 0)
remote: Resolving deltas: 100% (7507/7507), done.
To github.com:gitlao/tx2440a.git
 * [new branch]      master -> master
[

[email protected] tx2440a]# 

相關推薦

git push提示錯誤Write failed: Broken pipe解決

第一次git提交程式碼到github遇到錯誤:[[email protected] tx2440a]# git push origin masterCounting objects: 76779, done.Delta compression using up to

解決ssh的"Write failed: Broken pipe"問題

問題現象 用 ssh 命令連線伺服器之後,如果一段時間不操作,再次進入 Terminal 時會有一段時間沒有響應,然後就出現錯誤提示: Write failed: Broken pipe 只能重新用 ssh 命令進行連線。 解決方法 方法一:如果您有多臺伺服器

解決ssh Write failed: Broken pipe Bad owner or permissions on ssh config

一 在客戶端當前使用者下的.ssh目錄新建一個config檔案,並設定會話活躍時間 cd ~/.ssh/ vi config  內容如下 ServerAliveInterval 60 在.ssh目錄下執行 chmod 600 * 備註:上面為客戶段設定,如果想在服務

git push錯誤提示fatal: Authentication failed for 'http://.......ti.git/'

$ git push origin master remote: invalid token fatal: Authentication failed for 'http://.......ti.git/'   如果出現上面的提示,肯定是因為, 在'http://...

appium 用執行時提示Fatal Error: EPIPE: broken pipe, write

# !/usr/bin/env python # -*- coding:utf-8 -*- import os class DosCmd(object): def execute_cmd_result(self, command):

git push 提示 Everything up-to-date

remote ranch 分享 mage 一個 自己 提示 master 分支 服務器倉庫是完全空的,不包含任何一個分支(branch),因此剛開始 Push 時需要指定一個。執行 git remote -v 後看到自己的 remote 端名字為 origin: 執行

git push 報錯 error: failed to push some refs to 解決記錄

D:\csdn\csdnhb-ui>git push origin master:moshangshang To githy.csdn.com:pdd-fe/csdnhb-ui.git ! [rejected] master -> moshangshang(non-fast-forwar

git push 提示輸入使用者名稱和密碼

本人由於維護一些專案,經常需要提交程式碼到github伺服器,當某些倉庫專案不屬於ssh協議時,就會出現git push要求輸入使用者名稱和密碼的情況,搜了一下給了個解決辦法,這裡記錄一下。 xs

git push 時報錯 error: failed to push some refs to '[ema

原因:這是一個新建的一個倉庫,提交到github時,沒有 pull下來,導致 github中的README.md檔案不在原生代碼目錄中 $ git push -u origin master To github.com:Houttuyniae/notes.git ! [

win10系統安裝nodejs遇到提示錯誤代碼2503的解決辦法

win10 roc water ffffff shadow 命令 follow 執行 信息 我們在安裝某個軟件的時候,最鬧心的就是遇到提示安裝失敗或錯誤,比如win10系統在安裝nodejs遇到提示錯誤代碼2503,遇見這個問題也不要慌張,今天小編就來告訴大家怎麽解決這個問

正在閱讀:Win10啟用失敗提示錯誤0xC004C003的原因及解決方案

https://www.pconline.com.cn/win10/1112/11124386.html   為了獲得更多的操作許可權,使用者在升級 Win10系統 後,一般都會馬上進行系統啟用。不過因為windows10的啟用並不簡單,使用者們或多或少會遇到一些問題。比如有使用者在啟用Win1

python 安裝matplotlib後執行圖表時提示錯誤numpy版本不對的解決方法

python3.6,安裝了Matplotlib 2.2版本,執行圖表時提示以下錯誤: ImportError:  Importing the multiarray numpy extension module failed. likely you are trying to

git push的時候沒有許可權問題的解決辦法

這裡主要說一下git的https連結無法互動的問題,我在編碼(因為free,所以沒用github)上建立了私有Repo之後根本無法push(私有Repo連克隆都不行),因為大神給的demo in和遠端倉庫互動的時候用的是https連結,為什麼我也用https連結

Git初學札記(四)————Git Push的常規操作與Pull衝突解決

目錄 引言 同步 圖示 重點 引言 在團隊開發當中,Git Push是多人協作環節中的最重要的一環可能沒有之一。同SVN一樣,push操作可以看做是對遠端程式的提交。 在多人協作中,push往往是最容易出現問題的一個環節,因為其他開發者有可能修改

使用git往github上提交程式碼時出現[packet_write_wait connection to xx.xx.xx.xx Broken pipe]錯誤解決辦法

使用git往github上提交程式碼時出現[packet_write_wait connection to xx.xx.xx.xx Broken pipe]錯誤的解決辦法:         找到git安裝的目錄/etc/s

java.net.SocketException: Broken pipe (Write failed) (state=08S01,code=0)

0: jdbc:hive2://localhost:10000/default> desc function StringLower; Unknown HS2 problem when communicating with Thrift server.Error: org.apache.thr

git 錯誤error: failed to push some refs to

問題說明 當我們在github版本庫中發現一個問題後,你在github上對它進行了線上的修改;或者你直接在github上的某個庫中新增readme檔案或者其他什麼檔案,但是沒有對本地庫進行同步。這個時候當你再次有commit想要從本地庫提交到遠端的github庫中時就會出現push失敗的問題。

java.net.SocketException MESSAGE: Broken pipe (Write failed)

(一)我的專案環境 :javaweb專案採用c3p0連線池與mysql資料庫通訊,執行在centos7中的tomcat容器中。 症狀如下: 1.偶爾會報如下的錯誤(大致是一天一次,時間不定),此次插入資料庫失敗,但是重新插入就會成功。 2.我的c3p0配置如下

Broken pipe (Write failed) 是什麼情況,需要注意麼?

org.apache.catalina.connector.ClientAbortException: java.net.SocketException: Broken pipe (Write failed)     at org.apache.catalina.c

在使用Git Push程式碼的時候,會出現 Push to origin/master was rejected 的錯誤提示

轉載從  https://www.cnblogs.com/shenyixin/p/8310226.html     問題描述】   在使用Git Push程式碼的時候,會出現 Push to origin