当前位置:   article > 正文

git常用命令_在进行推送前,需要先将修改添加到本地仓库中使用什么命令

在进行推送前,需要先将修改添加到本地仓库中使用什么命令

git 建仓、推送命令

…or create a new repository on the command line (创建仓库并推送)

git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin git@github.com:账户/远程仓库名称.git
git push -u origin main
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

…or push an existing repository from the command line (远程推送至已经存在仓库)

git remote add origin git@github.com:账户/远程仓库名称.git
git branch -M main
git push -u origin main
  • 1
  • 2
  • 3

之前版本的默认分支名称:master , 现在已改:main

报错一you are about to commit crlf line separators to the git repository

git config --global core.autocrlf true
  • 1

报错二fatal: remote origin already exists. 查看origin 的情况

git remote -v   
  • 1

例子:

git fetch命令通常用来查看其他人的进程,它取回的代码对本地的开发代码没有影响。其默认取回所有分支的更新,如果只想取回特定分支的更新,可以指定分支名。
git fetch <远程主机名> <分支名>

origin,实际上是你给git,默认的一个远程仓库的名称。我的远程库实际上处于已删状态,所以我这里直接remove掉即可。

git remote remove origin
  • 1

之后就可重新建立(本地与远程)关联即可。

报错三Updates were rejected because the remote contains work that you do. 本地push的代码与远仓代码冲突,需要解决冲突后再推送 。

git init //初始化仓库
git add .(文件name) //添加文件到本地仓库
git commit -m “first commit” //添加文件描述信息
git remote add origin + 远程仓库地址 //链接远程仓库,创建主分支
git pull origin master // 把本地仓库的变化连接到远程仓库主分支
git push -u origin master //把本地仓库的文件推送到远程仓库
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

报错四fatal: unable to access 'https://github.com/xx/xxx.git/': OpenSSL SSL_read: Connection was reset, errno 10054. git 配置中默认sslVerify 为true,只需要将SSL校验设置 false 即可

git config --global http.sslVerify "false"
  • 1

后期再补充

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/643333
推荐阅读
  

闽ICP备14008679号