zoukankan      html  css  js  c++  java
  • Updates were rejected because the remote contains work that you do

     每次建立新的仓库,提交的时总会出现这样的错误,真是头疼,......

    直接开始正题,git 提交的步骤:

    1. git init //初始化仓库

    2. git add .(文件name) //添加文件到本地仓库

    3. git commit -m "first commit" //添加文件描述信息

    4. git remote add origin + 远程仓库地址 //链接远程仓库,创建主分支
     
    5. git push -u origin master //把本地仓库的文件推送到远程仓库
     
    提交之后就会出现以下错误
    要想解决以上错误,只需要在4,5之间使用git pull origin master即可
     
     
    正确步骤:
    1. git init //初始化仓库

    2. git add .(文件name) //添加文件到本地仓库

    3. git commit -m "first commit" //添加文件描述信息

    4. git remote add origin + 远程仓库地址 //链接远程仓库,创建主分支

    5. git pull origin master // 把本地仓库的变化连接到远程仓库主分支

    6. git push -u origin master //把本地仓库的文件推送到远程仓库
     
    转载地址:https://www.cnblogs.com/alex-415/p/6912294.html
  • 相关阅读:
    Nightmare Ⅱ HDU
    Full Tank? POJ
    2601 电路维修 (双端队列bfs优先队列bfs(最短路))
    Sudoku POJ
    Pushing Boxes POJ
    2501 矩阵距离 (bfs)
    【排序】绝境求生
    【排序】逆序对IV
    【排序】紧急集合
    【排序】常用排序法
  • 原文地址:https://www.cnblogs.com/kaerxifa/p/8479763.html
Copyright © 2011-2022 走看看