美文网首页
git 简单用法2

git 简单用法2

作者: 风凌摆渡人 | 来源:发表于2019-02-28 17:24 被阅读0次

    1、选择文件夹(右键 git bash Here)

    git init 
    

    2、迁出库

    git clone https://github.com/gitlklo/VUT.git
    

    3、查看分支

    cd vut
    git branch -a
    

    3、迁出切换分支

    git checkout 1.0.1
    

    4、删除分支

    git bush orgin --delete 1.0.1
    

    5、添加文件到git

    git add .
    

    6、提交到本地库

    git commit -m '备注'
    

    7、提交到远程库

    git push -u origin master
    

    相关文章

      网友评论

          本文标题:git 简单用法2

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