一、注册好gitee
二、安装好git
三、在gitee上创建好仓库
四、在本地做好相应工作
启动git bash,做Git 全局设置(只需做一次):
设置前执行 : git config --list
如果已经有了这两项,就不用设置:
user.name=XXX user.email=XXX@XXX.XXX
C:\Users\XXX>git config --list diff.astextplain.textconv=astextplain filter.lfs.clean=git-lfs clean -- %f filter.lfs.smudge=git-lfs smudge -- %f filter.lfs.process=git-lfs filter-process filter.lfs.required=true http.sslbackend=openssl http.sslcainfo=D:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt core.autocrlf=true core.fscache=true core.symlinks=false pull.rebase=false credential.helper=manager credential.https://dev.azure.com.usehttppath=true init.defaultbranch=main core.editor="D:\Program Files\Microsoft VS Code\bin\code" --wait user.name=XXX user.email=XXX@126.com credential.https://gitee.com.provider=generic
没有设置启动git bash,执行下面代码:
git config --global user.name "gitee用户名" git config --global user.email "gitee邮箱名"
五、打开 gitee新建仓库
设置仓库名,其他选项可以默认。
记下仓库地址:
https://gitee.com/XXX/XXXXX.git
六、vscode中设置
打开vscode
打开源代码管理器选择右上角三个点->远程->添加远程存储库:
添加刚才的gitee仓库地址,然后可能需要填gitee 用户名和密码
以上仓库设置完成
七、上传项目
消息框中填写上传说明,必须填,随便填。
点对勾√-> 提交(还有在填一次上传说明)完成。
标签:git,vscode,XXX,gitee,--,传到,user,lfs From: https://www.cnblogs.com/liehuo123/p/17139901.html