Git,致命:远程端意外挂起,同时推动git

时间:2019-09-03 05:52:58

标签: git gitlab

当我运行以下命令时


;with cte as 
    (select 'sd' as Type1, 'RAM' as Type2,'' as Type3,'TOTAL' as Type4,'N.A' as Type5,null as Type6)
,ct as (
    SELECT case when Type6 is null     ---- you may chnage your condition of checking Type6 is over there
        then 'OUT OF SERVICE' 
        else REPLACE( REPLACE( CONCAT('][', Type1, '][' , Type2, '][' , Type3, '][' , Type4, '][' , Type5, '][' , Type6), '[]', ''), '][', '/') 
        End AS OUTP FROM cte 
    )
    select  
    case when OUTP like '/%' 
        then case when OUTP like '%/' 
            then SUBSTRING( OUTP, 2, len(OUTP)-2 ) 
            else SUBSTRING( OUTP, 2, len(OUTP)-1 ) end 
        else case when OUTP like '%/' 
            then SUBSTRING( OUTP, 1, len(OUTP)-1 ) 
            else OUTP end 
        End as OUTPU 
    from ct


压缩后(100%)显示

git push origin master

我正在添加我的作品的快照

enter image description here

请帮助!

0 个答案:

没有答案