久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      git怎樣批量刪除分支

      方法:1、用“git branch|grep "選項"|xargs git branch-d”命令刪除本地分支;2、用“git branch|grep "選項"|xargs git push origin–delete”命令刪除遠程分支。

      git怎樣批量刪除分支

      本文操作環(huán)境:Windows10系統(tǒng)、Git2.30.0版、Dell G3電腦。

      git怎樣批量刪除分支

      git 批量刪除本地分支

      進入項目,比如想刪除所有的本地feature分支,執(zhí)行如下命令即可:

      git branch -a | grep "^  feature*" | xargs git branch -D

      git 批量刪除遠程分支

      進入項目,比如想刪除開頭是201803的release分支,執(zhí)行以下命令即可:

      git branch -a | grep -o "release/201803.*" | xargs -I {} git push origin :{}

      推薦學習:《Git教程

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號-2    滬公網(wǎng)安備31011702889846號