IDEA初始化项目到码云

创建本地项目和初始化好码云上的项目之后:

1、创建README.md文件,写一些项目相关的内容


2、创建.gitignore文件,写不需要提交的内容


里面的内容

# Windows thumbnail cache files
Thumbs.db
ehthumbs.db
ehthumbs_vista.db

# Dump file
*.stackdump

# Folder config file
[Dd]esktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msm
*.msp

# Windows shortcuts
*.lnk

/.idea/
/target/
/*.iml

创建好后,大体结构如下:

IDEA初始化项目到码云_第1张图片

3、初始化本地仓库


4、添加需要提交的文件


git add .代表全部   具体文件可以用git add fileName

5、提交代码到本地仓库


6、关联远程仓库

git remote add origin https://gitee.com/xxxxxx/xxxx.git



7、拉取码云上的代码,要不直接提交报错



8、推送代码到码云,这里需要强制推送加上-f命令



之后就ok了,

IDEA初始化项目到码云_第2张图片

IDEA具体配置码云自行百度一下,比较简单。


你可能感兴趣的:(IDEA初始化项目到码云)