-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
83 lines (74 loc) · 2.46 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# VFP compiled files
*.[fF][xX][pP]
*.[mM][pP][xX]
*.[qQ][pP][xX]
# VFP artifacts in the edit-build cycle
*.[eE][rR][rR]
*.[bB][aA][kK]
*.[tT][bB][kK]
*.[mM][pP][rR]
*.[vV][bB][rR]
_command.prg
foxuser.dbf
foxuser.fpt
# Code references
*_ref.[dD][bB][fF]
*_ref.[cC][dD][xX]
*_ref.[fF][pP][tT]
# FoxUnit files
FxuClassFactory.dbf
FXUResults.DBF
FXUResults.FPT
FXUResults.CDX
FXUPERSIST.XML
FXUPERSISTGETTEMPLATE.XML
# TwoFox temporary files and folders
.twofox*
# Microsoft Office temporary files
~$*
# Windows Explorer copies. The name is localized. If you intend to make
# a copy and add it to the repository, please choose a better name
# than the default.
* - Copy.*
* - Copy ([1234567890]).*
* - Copy ([1234567890][1234567890]).*
* - Kopie.*
* - Kopie ([1234567890]).*
* - Kopie ([1234567890][1234567890]).*
# Files used by Windows Explorer
Thumbs.db
desktop.ini
# Files used by Mac Finder
.DS_Store
.localized
# =================================================================
# Put project specific exclusions below this comment block.
#
# You would typically exclude data folders, any file that is
# generated by your application at runtime, developer-specific
# configuration files, files including passwords or authorization
# keys.
#
# Output files from your build proces such as .EXE, .DLL, and .TLB
# should be excluded as well. The same might not be true for other
# executables or type libraries that your application requires.
# Therefore exclusions do not work by extension only.
#
# If your application needs certain configuration files that are
# environment specific such as paths, SQL servers, etc. then
# alaways exclude these files from the repository. Provide a
# template file adding ".example" or ".template" to the full
# file name and check this one into the repository. Your team
# can copy this file and edit according to their configuration.
#
# It's best practice to exclude everything you don't intend to
# add to the repository, because then your unversioned and unstaged
# files will only be those you want to add to the repository.
# Browsing through a huge list of files increases the risk of
# missing and not adding a file to the repository.
#
# If you work as part of a team and have files to ignore that are
# specific to your work flow then do not add these exclusions
# here. They go into your local .git/info/exclude file which is
# not pushed to any remote and remains local to your working copy.
# =================================================================