forked from apache/incubator-retired-corinthia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
43 lines (34 loc) · 1.59 KB
/
.gitignore
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
# .gitignore 0.07 UTF-8 2015-08-09
#
# CORINTHIA/ROOT
# ==============
#
# .GITIGNORE FOR KEEPING BUILDS OUT OF THE REPOSITORY
#
# This .gitignore file is designed to eliminate build setups and their
# output from being committed to and carried in the repository. This is
# part of a structure where anyone can do multiple flavors of builds
# along-side the source without cluttering the repository iself.
## ELIMINATE AUTHORING/FILE-SYSTEM ARTIFACTS
## -----------------------------------------
# Editing backup and working files
*~
*#
# Finder directory status files (OS X)
.DS_Store
## KEEP BUILD ARTIFACTS IN THE BUILD/ FOLDER AND OUT OUT OF THE REPOSITORY
## -----------------------------------------------------------------------
build*/
# If all build operations are confined to the build/ folder or are conducted
# outside of the repository folder, they will be automatically excluded from
# the repository. Nothing produced by editors, IDEs, or build tools should
# be placed anywhere else in the repository but build/.
# 0.07 2015-08-09T11:12 Replace explicit ignore of Visual Studio artifacts
# with a generic warning.
# 0.06 2015-08-09T10:17 Removed now-obsolete use of external/ as part of
# build usage.
# 0.05 2015-08-09T09:00 Add additional build exclusions based on recommended
# ones from GitHub and experience with ephemeral artifacts on Windows.
# Based on an 0.04 from another project (orcmid).
#
# *** end of .gitignore ***