MuleSoft Studio .gitgnore file
MuleSoft IDE is built on Eclipse. Anypoint Studio is an IDE that we build MuleSoft project. **Reason for making this change**: - When committing the code to github, it includes the builds files and bin folder which can cause a huge file size. Adding the .gitignore specific for MuleSoft will prevent the unnecessary files to be added to git. **If this is a new template:** - For more information, please refer to https://docs.mulesoft.com/studio/7.14
This commit is contained in:
parent
4488915eec
commit
a7bab37641
49
MuleSoft.gitignore
Normal file
49
MuleSoft.gitignore
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
# ------------------------------------------------------------------------------ #
|
||||||
|
# Java defaults (https://github.com/github/gitignore/blob/master/Java.gitignore) #
|
||||||
|
# ------------------------------------------------------------------------------ #
|
||||||
|
*.class
|
||||||
|
|
||||||
|
# Package Files #
|
||||||
|
*.jar
|
||||||
|
*.war
|
||||||
|
*.ear
|
||||||
|
|
||||||
|
# ------------------------------------------------------------------------------------------- #
|
||||||
|
# Eclipse-specific (https://github.com/github/gitignore/blob/master/Global/Eclipse.gitignore) #
|
||||||
|
# ------------------------------------------------------------------------------------------- #
|
||||||
|
*.pydevproject
|
||||||
|
.metadata
|
||||||
|
bin/**
|
||||||
|
tmp/**
|
||||||
|
tmp/**/*
|
||||||
|
*.tmp
|
||||||
|
*.bak
|
||||||
|
*.swp
|
||||||
|
*~.nib
|
||||||
|
local.properties
|
||||||
|
.settings/
|
||||||
|
.loadpath
|
||||||
|
.project
|
||||||
|
.classpath
|
||||||
|
|
||||||
|
# External tool builders
|
||||||
|
.externalToolBuilders/
|
||||||
|
|
||||||
|
# Locally stored "Eclipse launch configurations"
|
||||||
|
*.launch
|
||||||
|
|
||||||
|
# CDT-specific
|
||||||
|
.cproject
|
||||||
|
|
||||||
|
# PDT-specific
|
||||||
|
.buildpath
|
||||||
|
|
||||||
|
# --------------- #
|
||||||
|
# MuleSoft Studio-specific (https://docs.mulesoft.com/studio/7.14/)#
|
||||||
|
# --------------- #
|
||||||
|
target/
|
||||||
|
.mule/**
|
||||||
|
.mule/**/*
|
||||||
|
.DS_Store
|
||||||
|
velocity.log
|
||||||
|
bin/
|
Loading…
Reference in New Issue
Block a user