赞
踩
(1)确认用户名密码无误 (我的用户名是邮箱)
# 查看gitee用户名、密码
git config user.name
git config user.password
# 更改用户名 密码
git config --global user.name "xxxx"
git config --global user.password "xxxx"
(2)输入命令:ssh-keygen -t rsa -C “xxxx@yyy.com” 设置邮箱
(3)连续三次回车
第一次提示:Enter file in which to save the key
第二次提示:Enter passphrase (empty for no passphrase)
第三次提示:Enter same passphrase again
然后会在 ~/.ssh/ 下生成 “id_rsa” 和 “id_rsa.pub” 两个文件
(4)cat ~/.ssh/id_rsa.pub 查看密钥
检查win10系统 绑定密码 解决push时 Incorrect username or password报错
电脑设置——>控制面板——>用户账户——>凭据管理器——>windows凭据
添加公钥 添加(4)里生成的本机公钥
新建仓库
新建文件夹->右键 git bash here
git init
git remote add origin https://gitee..... # 新建的git仓库地址
将需要上传的文件 放在该文件夹里
git add . # 也可以指定单个文件/文件夹 git add a.txt
git commit -m "添加的注释"
git push origin master
reject error :failed to push… hint
git pull origin mater #先合并
git push origin master
其它:不要轻易用! 会把gitee里的文件覆盖成本地的文件
git push origin master -f
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。