首页 > 学院 > 开发设计 > 正文

新手小白关于Git使用的坑

2019-11-08 00:24:45
字体:
来源:转载
供稿:网友

这是本菜鸟程序D0G的第一篇原创博客 话说还要删除这么多MD的说明文档..

关于git仓库的初始化上传 首先是要git创建仓库,注册等等

然后关键的来了 git remote add origin git@XXX.git 然后 git pull origin master 就出现了 Permission denied (publickey). fatal: Could not read from remote repository. 此处是大坑,用ssh的格式添加origin带来额外的问题. google,stackoverflow搜了一遍,大神们都说是ssh的各种配置问题.小白完全看懵B了. 我改成了https的链接,再push,问题解决…

小白操作流程 git config –global user.name “XXX” //你的昵称,这个应该是本机上git的全局设置 git config –global user.email “XXX@XXX.com” //你的邮箱,这个应该是本机上git的全局设置 git init git remote add origin https://XXX.git git pull origin master touch init.txt git add . git commit -m “第一次提交” git push origin master 至此完成


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表