美文网首页
github的代码上传

github的代码上传

作者: 戴码 | 来源:发表于2018-06-22 16:50 被阅读0次

    程序员,不得不知道github。但是很人多在使用的时候,由于第一次用的时候各种报错,所以默默放弃的有没有。那么我们现在来直面一下我们怕的问题吧!

    错误:

                  fatal: Invalid refspec 'https://github.com/DaiWenqi/**.git'
                  ! [rejected]        master -> master (non-fast-forward);
    

    步骤:
    1、git init 初始化
    2、git add . 添加跟踪
    3、git commit -m ‘描述文字’ 提交本地版本库
    4、git remote add orgin(tag名字)path (github地址) 建立远程连接
    5、git push origin master(远程仓库默认tag name :master or branch)

    其实代码同步工具,就是把代码传到远程。git本地有个本地版本库,远程有个远程版本库。上传的时候,出错往往是两边代码出现不一样。远程通常有个readme.md,而本地没有这个文件。

    使用命令 git pull --rebase origin master ,然后再git push origin master


    That's ok! Let's try it,right now!

    相关文章

      网友评论

          本文标题:github的代码上传

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