我在$ git pull
上尝试使用$ git fetch
或myRepo
命令会给我错误,但是myTestRepo
可以正常工作。
命令给了我这个错误。
Fetching origin
fatal: unable to access 'http://mysite/myPath/myRepo.git/': Recv failure: Connection reset by peer
error: Could not fetch origin
我尝试了git $ git fetch -p
和$ git fetch -p --all -f
命令,在该命令给出相同错误之后,它们工作了一两次。
答案 0 :(得分:0)
我正在使用http
连接,我将连接更改为ssh
而不是http,问题已解决
答案 1 :(得分:0)
我遇到类似的问题,但想出了办法。实际上,对于github,没有http
,只有https
。尝试将http
替换为https
。
答案 2 :(得分:0)
如果在使用 http url 时 80 被阻止,可能会发生这种情况。
答案 3 :(得分:0)
我遇到了这个问题
filelist=filestring
li=[]
merged_df=[]
for file in filelist:
# temp df
df=pd.read_json(file)
# filter columns
df2=pd.DataFrame(df[['a','e']])
#find data from each JSON
epf=df['s']['d']['Pf']
ep=pd.json_normalize(epf, record_path=['u','D'], meta=['l','dn'])
#append data from each JSON and add to li_dframe
li.append(ep)
frame=pd.concat(li,axis=0,ignore_index=True)
#merge filtered columns and li_dframe
merged_df=pd.concat([df2,frame.reset_index(drop=True)],axis=1).ffill()
print(merged_df)
merged_df.head(n=40)
我通过添加 sudo commando 解决了
git clone xyz.git