Can't finish GitHub sharing process Successfully created project 'springcloud-parent' on GitHub,

解决Can‘t finish GitHub sharing process Successfully created project ‘‘ on GitHub, but initial push failed:Could not read from remote repository.
    本人安装Git-2.8.3-32-bit,然后在Android Studio中Settring -> VersionControl ->GitHub ,设置自己的github账号和密码,点击Test测试Success成功提示了 ,然后把项目发布到GitHub中:VCS -> Import into Version Control -> Share Project on Github,出现如下错误信息:

Can‘t finish GitHub sharing process
Successfully created project ‘MyApplication25‘ on GitHub, but initial push failed:
Could not read from remote repository.

方法很简单:在Settring -> VersionControl ->GitHub中去掉:“Clone git repositories using ssh”即可:

Can't finish GitHub sharing process Successfully created project 'springcloud-parent' on GitHub,

原文地址:https://www.cnblogs.com/123hll/p/11260439.html

时间: 2024-10-12 21:32:53

Can't finish GitHub sharing process Successfully created project 'springcloud-parent' on GitHub,的相关文章

解决上传到github报错Successfully created project 'autotest' on GitHub, but initial commit failed:

通过IDEA上传代码到GitHub上可是有时候会碰到这样的问题. 当我们选择VCS->Import into Version Control->Share Project on GitHub提交代码.点击OK.然后就跳出了这样的信息: Can't finish GitHub sharing process Successfully created project 'autotest' on GitHub, but initial commit failed: *** Please tell m

【翻译】GitHub Pages Basics 基本使用帮助【一】GitHub Pages 是什么?

https://help.github.com/articles/what-is-github-pages/ What is GitHub Pages? --> GitHub Pages 是什么? GitHub Pages is a static site hosting service. GitHub Pages 是一个静态网站托管服务 GitHub Pages is designed to host your personal, organization, or project pages

iOS- 什么是GitHub?关于它的自我介绍「初识 GitHub」

1 前言 我一直认为 GitHub 是程序员必备技能,程序员应该没有不知道 GitHub 的才对,我当初接触 GitHub 也大概工作了一年多才开始学习使用,我读者里很多是初学者,而且还有很多是在校大学生,所以不会用 GitHub 也就不奇怪了. 2 什么是 GitHub 确切的说 GitHub 是一家公司,位于旧金山,由 Chris Wanstrath, PJ Hyett 与 Tom Preston-Werner 三位开发者在2008年4月创办.这是它的 Logo: 2008年4月10日,Gi

GitHub 设置首页显示 404 There isn't a GitHub Pages site here.

问题如题! 能使用的必要条件是: 1.创建的仓库 Code 中 必须 有 README.md 文件,内容自定 2.设置模板在仓库中 Settings -->GitHub Pages -->Chang theme 设置后会在Code 根目录生成一个 _config.yml 文件,添加两个选择 title: Test title description: Test description GitHub 设置首页显示 404 There isn't a GitHub Pages site here.

在GitHub上删除项目后,在IDEA上传项目依然提示project is already on github

问题描述: 在GitHub上传自己本地项目后,发现存在问题,然后在Github删除后,使用IDEA重新上传时遇到了问题,一直提示“project is already on github” 解决方案: 1.关闭IDEA,在本地项目中找到.git隐藏文件夹. 2.进入该文件夹,找到config文件. 3.删除下面内容. [remote "origin"] url = [email protected]:/Miku-1/IdeaProjects.git fetch = +refs/head

GitHub Desktop报错fatal: unable to access 'https://github.com……: schannel: failed to open CA file 'C:/Users……bundle.crt': No such file or directory的解决办法

昨天github桌面版push的时候开始报错,提示某个crt文件找不到,大概就是下面这样 fatal: unable to access 'https://github.com/XXX/': schannel: failed to open CA file 'C:/Users/Andrew/AppData/Local/GitHubDesktop/app-1.2.2/resources/app/git/mingw64/bin/curl-ca-bundle.crt': No such file or

GitHub实战系列~2.把本地项目提交到github中 2015-12-10

实例: 1.上面步骤和昨天一样,先在github里面新建一个项目,然后clone一份到本地 2.把本地文件拖到git项目文件夹里面(后面讲怎么过滤文件) 3.打开git bash 进入项目文件夹,添加全部(*) 提交 [email protected] MINGW64 ~ $ cd Windows10/ [email protected] MINGW64 ~/Windows10 (master) $ ls [email protected] MINGW64 ~/Windows10 (master

Git与GitHub(利用git上传本地文件到GitHub上面)

GitHub就是代码仓库(管理代码的工具)可以共享给所有人 Git就是从GitHub上提取文件或者将本地文件上传到GitHub的工具(等同于SVN) 利用Git上传项目 步骤一:(用户和邮箱为你github注册的账号和邮箱) $ git config --global user.name "startstudysmile" $ git config --global user.email "[email protected]" 步骤二:设置SSH key $ ssh

如何使用GIT_1.把GitHub仓库克隆到本地并更新代码到GitHub

1.在GitHub创建仓库 点击New repository创建仓库 2.填写关于仓库的相关信息 3.仓库创建完毕,接下来用GIT Bash/GitHub客户端克隆项目到本地(本文所用的客户端是Git Bash) 如何配置Git客户端可以参考这篇博文https://www.cnblogs.com/jf-67/p/6415637.html,在此不再赘述 4.Git配置完成后,将项目从GitHub上克隆到本地,首先使用cd命令进入你要想项目存放到本地的目录 如本文,进入的是位于G盘的一个文件夹中,因