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
…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
之前版本的默认分支名称:master , 现在已改:main
报错一:you are about to commit crlf line separators to the git repository
git config --global core.autocrlf true
报错二:fatal: remote origin already exists.
查看origin 的情况
git remote -v
例子:
git fetch命令通常用来查看其他人的进程,它取回的代码对本地的开发代码没有影响。其默认取回所有分支的更新,如果只想取回特定分支的更新,可以指定分支名。
git fetch <远程主机名> <分支名>
origin,实际上是你给git,默认的一个远程仓库的名称。我的远程库实际上处于已删状态,所以我这里直接remove掉即可。
git remote remove origin
之后就可重新建立(本地与远程)关联即可。
报错三: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 //把本地仓库的文件推送到远程仓库
报错四: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"
后期再补充