1.    创建项目本地git仓库

编辑.gitignore文件中的忽略上传文件

# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
*.iml
*.idea/

IDEA本地项目代码提交到码云-LMLPHP

2.    Add项目代码

IDEA本地项目代码提交到码云-LMLPHP

3.    注册码云账号,新建仓库

码云地址:码云官网访问地址

IDEA本地项目代码提交到码云-LMLPHP

4.    设置仓库名称,选择语言,忽略文件等

IDEA本地项目代码提交到码云-LMLPHP

5.    进入仓库,复制仓库远程地址

IDEA本地项目代码提交到码云-LMLPHP

6.    返回IDEA,提交项目

IDEA本地项目代码提交到码云-LMLPHP

7.    设置远程仓库地址

IDEA中打开git命令窗口,ALT+F12 ,输入 

git init
# git remote add origin 后面为远程地址
# git remote add origin https://gitee.com/guoxu1101/demo.git

git remote add origin +远程地址

设置master分支

git pull origin master
git branch --set-upstream-to=origin/master master

合并本地仓库和远程仓库历史 

git pull origin master --allow-unrelated-histories

完成,两种提交方式

1.    IDEA提交

2.    命令提交 

git add .

git commit -m "第一次提交"

git push origin master
11-27 04:32