进行基础设置
git config --global user.name "账号名"
git config --global user.email "账号邮箱@qq.com"
git config --global core.autocrlf true --提示:“warning: CRLF will be replaced by LF in”设置
git config --global push.default matching --提示:“warning: push.default 未设置”设置
生成密钥
ssh-keygen -t rsa -C "账号邮箱@qq.com"
码云设置:
登录后,右上角设置
进行SSH公钥设置,因为在新建项目里设置公钥只有读取的权限,没有推送的权限
在码云仓库新建一个仓库用来存放代码
在码云获取 git地址
代码里调用该命令
git init
git remote add origin git地址
git add .
git commit -m "laravel58初始化"
git pull --rebase git地址 master
git push git地址
结束,最终效果
原文地址:https://www.cnblogs.com/huanghuahui/p/11159280.html
时间: 2024-10-07 21:10:44