zoukankan      html  css  js  c++  java
  • GitBlit中出现 error: remote unpack failed: error Missing tree

    clu@WASYGSHA01-1020 MINGW64 /d/ChuckLu/Git/Edenred/LISA_5.0.0.0 (local)
    $ git push origin preaction:preaction
    Counting objects: 3717, done.
    Delta compression using up to 8 threads.
    Compressing objects: 100% (1631/1631), done.
    Writing objects: 100% (3717/3717), 779.13 KiB | 5.19 MiB/s, done.
    Total 3717 (delta 3063), reused 2480 (delta 2019)
    remote: Resolving deltas: 100% (3063/3063)
    error: remote unpack failed: error Missing tree eb96e0534e08fe512113b25a99d783278e04e8b1
    To http://172.31.212.149:8080/r/LISA/LISA_5.0.0.0.git
    ! [remote rejected] preaction -> preaction (n/a (unpacker error))
    error: failed to push some refs to 'http://clu@172.31.212.149:8080/r/LISA/LISA_5.0.0.0.git'

    clu@WASYGSHA01-1020 MINGW64 /d/ChuckLu/Git/Edenred/LISA_5.0.0.0 (local)
    $ git show eb96e05
    tree eb96e05

    App_Browsers/
    App_Code/
    App_Data/
    App_Themes/
    CMSAdminControls/
    CMSDesk/
    CMSEdit/
    CMSFormControls/
    CMSHelp/
    CMSInlineControls/
    CMSMasterPages/
    CMSMessages/
    CMSModules/
    CMSPages/
    CMSResources/
    CMSScripts/
    CMSSiteManager/
    CMSTemplates/
    CMSWebParts/
    Chile/
    ClientBin/
    ConstantFile/
    Default.aspx
    Default.aspx.cs
    Global.asax
    Holcim/
    Images/
    LISA.CMSWeb.50.wpp.targets
    Nestle/
    RESTService.svc
    Remoting.config
    SamSung/
    Scripts/
    Views/
    clientaccesspolicy.xml
    en-US/
    favicon.ico
    jQueryCarousel/
    parameters.config
    web.config
    website.publishproj
    wse3policy.config

    clu@WASYGSHA01-1020 MINGW64 /d/ChuckLu/Git/Edenred/LISA_5.0.0.0 (local)
    $ git push --no-thin origin preaction:preaction
    Counting objects: 3717, done.
    Delta compression using up to 8 threads.
    Compressing objects: 100% (1631/1631), done.
    Writing objects: 100% (3717/3717), 779.13 KiB | 4.99 MiB/s, done.
    Total 3717 (delta 3063), reused 2480 (delta 2019)
    remote: Resolving deltas: 100% (3063/3063)
    error: remote unpack failed: error Missing tree eb96e0534e08fe512113b25a99d783278e04e8b1
    To http://172.31.212.149:8080/r/LISA/LISA_5.0.0.0.git
    ! [remote rejected] preaction -> preaction (n/a (unpacker error))
    error: failed to push some refs to 'http://clu@172.31.212.149:8080/r/LISA/LISA_5.0.0.0.git'

    解决方案:

    https://github.com/gitblit/gitblit/issues/704

    https://github.com/gitblit/gitblit/issues/989

    http://gitblit.com/faq.html

    push failed for branch (n/a (unpacker error))

    This is a bug in JGit (issue 408). TLDR: Newer git clients are optimized to send less data on the wire. JGit expects complete data to be sent, but there are scenarios where native git can optimize-out sending objects. By default, JGit requires everything sent be complete and referenceable.

    If you experience this, the workaround is to temporarily disable the reachable check for the receive pack, push, and then re-enable the setting.

    git.checkReferencedObjectsAreReachable = false

    在GitBlit的服务端配置中添加上面的代码,就可以确保push成功。

    等到push成功之后,再注释这段配置,使用#注释,以便下一次需要的时候再开启。

  • 相关阅读:
    c#随便写写 数据层和表现层,队列执行
    unity代码设置鼠标样式
    Unity c#反射查找类中符合条件的方法并执行
    封装你的协程Unity TaskManager
    基于steamworks获取steam用户头像
    开启Unity项目中VS工程的属性面板
    移动端的动态阴影
    c#静态扩展方法,字典的克隆扩展方法
    Unity热更方案汇总
    lua输入函数名字符串执行函数
  • 原文地址:https://www.cnblogs.com/chucklu/p/7676774.html
Copyright © 2011-2022 走看看