-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initialisation du dépôt avec le fichier .gitignore #1
- Loading branch information
1 parent
1eb7f2c
commit feaeac3
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# exclusion des dossiers contenant les élements générés | ||
**/out/ | ||
**/target/ | ||
**/build/ | ||
**/bin/ | ||
# pour la javadoc (selon le nom du dossier pouvant la contenir) | ||
**/javadoc/ | ||
**/apidocs/ | ||
**/testapidocs/ | ||
|
||
# pour intellij | ||
**/*.iml | ||
**/.gradle | ||
**/local.properties | ||
# on peut enlever tout le dossier .idea : il sera alors à refaire par chaque developpeur | ||
**/.idea/ | ||
# ou on peut enlever cibler plus finement, mais on laisse alors des traces d'intellij dans le git | ||
#.idea/workspace.xml | ||
#.idea/libraries | ||
#.idea/inspectionProfiles/ | ||
#.idea/vcs.xml | ||
|
||
|
||
|
||
#pour Eclipse | ||
**/.project | ||
**/.classpath | ||
**/.settings/ | ||
# les dossiers du workspace eclipse... normalement pas dans le git, à adapter au besoin | ||
.metadata/ | ||
.recommanders/ | ||
|
||
# pour les mac... | ||
**/.DS_Store | ||
|
||
|