赞
踩
1.首先点击创建仓库
然后会出现一下内容,不要急着关掉,他能告诉你如何创建仓库
- //git 全局设置
- git config --global user.name "你的名字"
- git config --global user.email "你的邮箱"
-
- //创建 git 仓库
- git init //初始化
- git commit -m "first commit"
- //"git commit": 这是Git命令,用于将本地的代码更改提交到Git仓库。"-m": 这是一个选项,用于指定提交消息。它后面紧跟着提交消息的内容。
- "first commit": 这是您为本次提交所提供的提交消息。提交消息是对本次更改的简短描述,它通常用于记录本次提交的目的或所做的修改。
- git remote add origin https: //关联一个别名为origin的远程仓库地址
- git push origin master //推送到别名为origin仓库的master分支
但有的推送时会报一下问题(可能是没绑邮箱的问题,我同时使用两个gitee账号,其中一个没绑邮箱)
remote: [session-1f466a93] Access denied
fatal: unable to access 'https://xxx : The requested URL returned error: 403
解决方案:
一般提交不上的通常输入一下代码即可
- git config --global --unset http.proxy
- git config --global --unset https.proxy
若还不能解决:
在终端中输入 cat ~/.gitconfig 查询当前用户
在windows中找到windows凭据
找到git,点击查看与你的信息不同,则修改并保存就好了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。