美文网首页
git 提交代码

git 提交代码

作者: McsNick | 来源:发表于2017-08-28 02:58 被阅读0次
    • 日常提交代码
    1. 方案1:
    
    git add .
    
    git commit -m"command"
    
    git fetch origin a
    
    git rebase origin/master
    
    git add . (如果有冲突)
    
    git rebase --continue
    
    
    • 添加代码到暂存区

    • 提交代码(本地提交)

    • 抓取远程分支到本地(相当于在本地提交前拉取远程代码,然后再commit本地代码,不会merge)

    • 变基(抓取后本地有2条分支,变基是把当前分支合并到另一条分支)

    • 如果有冲突,解决冲突再continue

    1. 方案2:
    
    git add .
    
    git stash
    
    git pull
    
    git stash pop
    
    git add .
    
    git commit -m"command"
    
    git push(如果有冲突重复前面所有步骤)
    
    

    相关文章

      网友评论

          本文标题:git 提交代码

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