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

…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"

后期再补充

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值