美文网首页
Git 更新代码提交到远程版本库master分支 2023

Git 更新代码提交到远程版本库master分支 2023

作者: 阿然学编程 | 来源:发表于2023-02-22 17:15 被阅读0次
    //上传缓存区
    git add .
    
    //提交说明
    git commit -m "代码更新"
    
    //查看文件修改状态
    git status
    
    //将提交到本地的仓库的代码push到远程仓库master分支
    git push origin master
    

    相关文章

      网友评论

          本文标题:Git 更新代码提交到远程版本库master分支 2023

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