美文网首页
用git将本地文件上传到远程仓库(git push)

用git将本地文件上传到远程仓库(git push)

作者: 赫尔特 | 来源:发表于2019-07-05 09:00 被阅读0次
  1. 密钥生成:https://blog.csdn.net/qq_34446663/article/details/81106018
  2. 本地仓库连接到远程仓库:https://www.cnblogs.com/fnng/archive/2011/08/25/2153807.html
  3. 按照上面的方法,在第二次提交时,可能会遇到“nothing to commit, working tree clean”的报错,原因是你的项目没有进行修改,git认为没有必要提交,你可以尝试打开之前提交的文件,修改里面的一些内容,这个时候就可以提交了。
  4. 比如:(2中网址实例)
    makdir ~/hello-world //创建一个项目hello-world cd ~/hello-world //打开这个项目
    git init //初始化 touch README
    git add README //更新README文件 git commit -m 'first commit'//提交更新,并注释信息“first commit”
    git remote add origin git@github.com:xuezhixiaxuenai/nainaitianwaixian.git //连接远程github项目 git pull origin master --allow-unrelated-histories //将分支强行合并
    $ git push -u origin master //将本地项目更新到github项目上去

相关文章

  • 同步GIT仓库的操作 -- push命令

    git push命令用于向远程仓库上传本地仓库的内容。push操作就是将本地的commit打包上传到远程仓库中。与...

  • Git命令

    git push 作用:将本地仓库中代码提交到远程仓库 语法 :git push 仓库地址 master git ...

  • 2018-05-14

    删除远程分支: git push 远程仓库 --delete 远程分支 git push 远程仓库:远程分支 本地...

  • 用git将本地文件上传到远程仓库(git push)

    密钥生成:https://blog.csdn.net/qq_34446663/article/details/81...

  • git总结

    本地文件夹关联远程仓库 在github上新建远程仓库, 在本地文件夹下 git init 添加远程仓库:git ...

  • 错误问题记录

    1、将Git 本地仓库和 GitHub 上新建的 Repository 关联 并push 本地代码到远程仓库 出现...

  • Git基本操作和错误

    创建SSH Key 本地创建仓库操作 创建本地仓库 将文件添加进Git 提交 Git远程仓库操作 查看远程仓库 添...

  • ios git常规操作

    1.git从本地文件链接到远程仓库的方法,远程仓库为空 2.git将远程仓库clone到本地的方法 clone成功...

  • flask day03

    关于 git从本地上传到github git init 将所有文件添加到仓库git add 把所有文件提交到仓库,...

  • github提交代码失败常见问题汇总

    1- 使用git push -u 远程库名 master 命令将本地提交的内容传到git远程库时出现错误,如图示:...

网友评论

      本文标题:用git将本地文件上传到远程仓库(git push)

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