美文网首页
git使用流程

git使用流程

作者: ChancePro | 来源:发表于2018-11-26 22:59 被阅读1次

    //获取key
    ssh-keygen -t rsa

    //克隆git(第一次)
    git clone
    //切换分支 一般默认是master
    git checkcout dev
    //这里开始开发 创建开发分支
    git branch 1604181616_name_msg
    //切换到开发分支
    git checkout 1604181616_name_msg
    //改代码
    //查看 修改状态
    git status
    //提交到本地
    git add .
    git commit
    //提交到中心服务器
    git push

    相关文章

      网友评论

          本文标题:git使用流程

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