GIT操作

作者: 秋名山车神_f776 | 来源:发表于2020-03-19 09:32 被阅读0次

    https://www.liaoxuefeng.com/wiki/896043488029600/900003767775424

    查看分支:
    git branch
    创建并切换分支:-b参数表示创建并切换
    git checkout -b develop-1.0.0

    git stash :保存当前工作区和暂存区的修改。
    git stash pop:暂存区到工作区

    第一步是用git add把文件添加进去,实际上就是把文件修改添加到暂存区;

    第二步是用git commit提交更改,实际上就是把暂存区的所有内容提交到当前分支。

    git branch命令查看当前分支
    git checkout -b develop-1.0.0
    .建立本地到上游(远端)仓的链接 --这样代码才能提交上去
    git branch --set-upstream-to=origin/master

    git commit操作的是本地库,git push操作的是远程库。

    git commit是将本地修改过的文件提交到本地库中。
    git push origin develop-1.0.0是将本地库中的最新信息发送给远程库。

    git checkout feature-1.0.0/cyk
    git checkout feature-1.0.0/wtk

    1.客户管理里雇员相关接口修改
    2.建立qt-party-role工程

    重置后推送
    git push -u origin feature-1.0.0/cyk -f

    相关文章

      网友评论

          本文标题:GIT操作

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