情况1.
情况二:
pack.windowmemory': out of range The remote end hung up unexpectedly The remote end hung up unexpect
【问题描述】
本人的git全局变量是上家公司的账号密码及对应的配置信息也是与上家一致,所以入职新公司的时候git全局变量会有冲突。
【解决方式】 1.修改 本地git 全局配置信息
[user]
name = 你们公司GIT账号名称
email = 你们公司Git邮箱或邮箱名称
[pack]
windowMemory = 1024m
deltaCacheSize = 1024
threads = 1
?2.?当前 [?需要提交到git上 ] 或 [ 需要从git上拉取下来?] 的项目本地仓库.git文件夹中config配置信息
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
hideDotFiles = dotGitOnly
packedGitLimit = 128m
packedGitWindowSize = 128m
[remote "origin"]
url = 当前项目GIt服务器仓库地址
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "develop"]
remote = origin
merge = refs/heads/develop
|