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 //把本地仓库的文件推送到远程仓库
     
    OK
    搞定,回家吃饭!!
    看的故事多了,才慢慢知道,话说多了就是打自己的脸!
  • 相关阅读:
    【洛谷 1546】最短网络
    [Algorithms]Greedy
    [Operating System]Thread Pool
    微积分——外微分形式的微积分
    Codeforce Round #548(Div2)
    Codeforce Round #544(Div3)
    Codeforce Round #545(Div2) (BCD题解)
    桶排序桶的前缀和/差分
    Codeforce Round #545(Div2)
    Codeforce Round #531(Div3)
  • 原文地址:https://www.cnblogs.com/alex-415/p/6912294.html
Copyright © 2011-2022 走看看