美文网首页
Github|创建新分支

Github|创建新分支

作者: 绍重先 | 来源:发表于2017-12-24 14:13 被阅读0次
    • 新增本地分支
    git remote add origin `地址`
    git pull origin master
    //本地创建新分支
    git branch Branch1224
    //切换到新分支
    git checkout Branch1224
    //发布新分支
    git push origin Branch1224
    //本地删除分支
    git branch -d Branch1224
    
    • 合并分支

    相关文章

      网友评论

          本文标题:Github|创建新分支

          本文链接:https://www.haomeiwen.com/subject/ohicgxtx.html