eclipse中上传远程仓库忽略指定文件类型

问题描述,eclispe中要想将本地仓库的内容上传到远程仓库,就需要将一些jar包.classpath文件忽略,如何实现忽略这些文件。

操作:
在用户目录下创建一个文件
文件名随意
文件内容

# 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

eclipse中上传远程仓库忽略指定文件类型_第1张图片
打开.gitconfig
添加新的内容
在这里插入图片描述
完成操作!!
你怎么还没有点赞

你可能感兴趣的:(eclipse中上传远程仓库忽略指定文件类型)