idea为本地项目创建仓库并git到云上

Posted jerym

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了idea为本地项目创建仓库并git到云上相关的知识,希望对你有一定的参考价值。

1、为本地项目创建一个本地仓库:

技术分享图片

2、在码云上创建一个仓库,(初始化的时候先不要创建README.md文件)

3、本地仓库关联远程仓库:右键项目选址git>>repository>>remotes

技术分享图片

点+号输入远程仓库的地址

技术分享图片

 

4、add、commit、pull、push将本地项目存储到远程仓库

 

如果报错:refusing to merge unrelated histories

则:git pull origin master --allow-unrelated-histories

 如果>>git push 提示fatal: The current branch master has no upstream branch.
To push the current branch and set the remote as upstream, use

则执行:git push --set-upstream origin master

或者:git push -u origin master  (说是如果没有分支会创建分支,未验证)

技术分享图片

idea创建git项目到远程仓库:https://jingyan.baidu.com/article/0a52e3f4ef625bbf62ed7286.html

IDEA中如何初始化git本地仓库,并提交到远程仓库

 


以上是关于idea为本地项目创建仓库并git到云上的主要内容,如果未能解决你的问题,请参考以下文章

vue创立项目脚手架并且与git仓库关联起来

Idea创建项目并push到远程Git仓库

将本地项目上传gitee实战

vue项目起步准备

visualstudio拉取线上代码

idea 操作项目上传gitee