美文网首页
Git 检出代码步骤

Git 检出代码步骤

作者: 动动拐 | 来源:发表于2020-05-18 09:18 被阅读0次

    检出代码步骤

    检出

    
    git clone https://gitee.com/hztangsheng/study.git
    
    

    查看状态

    
    git status
    
    

    更新

    
    git pull <远程主机名><远程分支名>
    
    例如:
    
    git pull origin master
    
    

    本地提交

    
    git commit -m '提交说明'
    
    

    远程提交

    
    git push <远程主机名><远程分支名>
    
    

    相关文章

      网友评论

          本文标题:Git 检出代码步骤

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