Fetch the repository succeeded.
简易的命令行入门教程:
Git 全局设置:
git clone https://gitee.com/flycatzly/wechatProject.git
git config --global user.name "Flycatzly"
git config --global user.email "2286704940@qq.com"
创建 git 仓库:
mkdir sping-cloud-demo
cd sping-cloud-demo
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/flycatzly/wechatProject.git
git push -u origin master
已有项目?
cd existing_git_repo
git remote add origin https://gitee.com/flycatzly/wechatProject.git
git push -u origin master
码云的账号和密码:
2286704940@qq.com/qaz0820
解决方法二:Windows凭据设置
控制面板->用户账户->凭据管理器->Windows凭据
普通凭据下
git:https://github.com/或git:https://gitee.com/
删除操作:
点击删除->
git push origin master->
重新弹出输入账号密码界面
修改操作:点击修改->填写正确的账号密码->保存
git clone https://gitee.com/flycatzly/wechatProject.git
Sign in for post a comment
Comment ( 0 )