Eclipse新建Maven工程——git篇

1、eclipse,新建一个maven工程,步骤如下图:

Eclipse新建Maven工程——git篇

Eclipse新建Maven工程——git篇

Eclipse新建Maven工程——git篇

右键新建的工程

Eclipse新建Maven工程——git篇

发布前后工程对比如下:

Eclipse新建Maven工程——git篇Eclipse新建Maven工程——git篇

2、发布为本地仓库

Eclipse新建Maven工程——git篇

Eclipse新建Maven工程——git篇

Eclipse新建Maven工程——git篇

因为项目中,不是所有的文件,都需要提交到githut上,所以需要把不需要提交的问题忽略,步骤如下:

访问https://github.com/github/gitignore,找到Java.gitignore,添加内容:

# Compiled class file
*.class # Log file
*.log # BlueJ files
*.ctxt # Mobile Tools for Java (J2ME)
.mtj.tmp/ # Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid* .classpath
.project
.settings
target

修改git的配置文件.gitconfig,文件路径如下图所示

Eclipse新建Maven工程——git篇

[core]
excludesfile = C:/Users/Administrator/Java.gitignore

重启eclipse,查看ignore相关的配置

Eclipse新建Maven工程——git篇

这样,target下面无用的class和eclipse相关的配置文件,在提交文件的时候,就忽略掉了,如下图所示

Eclipse新建Maven工程——git篇

把所有文件添加到暂存区

Eclipse新建Maven工程——git篇

提交到本地仓库

Eclipse新建Maven工程——git篇

去github上新建工程,名字与工程名称保持一致

Eclipse新建Maven工程——git篇

Eclipse新建Maven工程——git篇

复制uri:https://gitee.com/kszsa/taskscheduling.git

Eclipse新建Maven工程——git篇

Eclipse新建Maven工程——git篇

Eclipse新建Maven工程——git篇

上一篇:JAVA核心技术I---JAVA基础知识(多态)


下一篇:PHP flush sleep 输出缓存控制详解