日期:2020-07-27 阅读:605
dmandwp系统 - wordpress系统和DM系统区块建站>>
进入gitee后,有头像->设置-->ssh公钥
点击怎么生成公钥,https://gitee.com/help/articles/4191
https://gitee.com/help/categories/38
或 help中心 https://gitee.com/help/ 搜索 生成/添加SSH公钥 :https://gitee.com/help/articles/4181
---------------
ssh-keygen -t rsa -C "xxxxx@xxxxx.com" -- 换成自己的邮箱
如果提示ssh-keygen不是内部变量,则设置环境变量 : setx path "%path%;D:\Program Files\Git\usr\bin"
然后连按三次回车。
Your public key has been saved in /c/Users/Administrator/.ssh/id_rsa.pub.
然后把id_rsa.pub.的内容复制到 gitee后台的公钥管理。
再回到cmd,运行 ssh -T git@gitee.com 即可。
--------------
然后到gitee后台,创建一个仓库。不要勾选readme
然后在项目当前目录的cmd:
git status
如果有要上传的,则git add .
再 git commit -m "..."
再执行下面:
git remote add origin https://gitee.com/demososo/vue-shop-test.git
git push -u origin master
因为目前没有master,所以要加 -u orign
-----------------
如果 push时,总提示要密码,则是: https://blog.csdn.net/yychuyu/article/details/80186783
是因为用了https,而不是ssh的git
用remote改下就行。
执行 git remote -v
git remote rm origin
再 git remote add origin git@gitee.com:demososo/vue-shop-test.git
------------