zoukankan      html  css  js  c++  java
  • Git之将master合并到自己分支

    1.切换到master主分支上

    git checkout master
    2.将master更新的代码pull到本地

    git pull
    3.切换到自己的分支上

    git checkout branchName
    4.合并master到自己的分支

    git merge master
    5.用idea或者sublime text解决冲突

    Git用<<<<<<<,=======,>>>>>>>标记分离不同分支的内容,将不需要的部分删掉即可解决冲突。

    6.add、commit

    git add .
    git commit -m "conflict all fixed"
    7.将自己分支的代码提交到远程

    git push origin branchName

  • 相关阅读:
    python反射
    numpy笔记
    leetcode43
    leetcode-42
    The Github Flow
    leetcode-37
    leetcode-41
    leetcode-40
    TCP扫盲2
    字节码分析与操作
  • 原文地址:https://www.cnblogs.com/onemorepoint/p/15623719.html
Copyright © 2011-2022 走看看