-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
43 lines (32 loc) · 796 Bytes
/
.gitignore
File metadata and controls
43 lines (32 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
############################################################
# DO NOT EDIT THIS FILE - the content may be overwritten
# Version: 1.0.0.0
############################################################
# Ignore everything
/*
# Do not ignore .gitignore files
!.gitignore
!*/.gitignore
# Do not ignore .gitattributes files
!.gitattributes
!*/.gitattributes
# Do not ignore .gitkeep files
!.gitkeep
!*/.gitkeep
# Do not ignore the directory /project
!project/
# Ignore *.ours and *.theirs files in
project/**/*.ours
project/**/*.theirs
# Ignore .apsession
.apsession
# Allow Python code generator folder
!/code-generator
!/code-generator/**
!code-generator
!code-generator/**
# Allow releases folder
!/releases
!/releases/**
!releases
!releases/**