Mercurial > famtree
comparison .hgignore @ 0:a17a4894f4bd draft default tip
Initial commit converting git to mercurial
author | Alfred Burgess <aburgess@ucc.asn.au> |
---|---|
date | Sun, 14 Apr 2024 19:35:23 +0800 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:a17a4894f4bd |
---|---|
1 syntax: glob | |
2 # Ignore Git | |
3 .git/ | |
4 # Ignore logs | |
5 logs/ | |
6 | |
7 # Ignore compiled binaries | |
8 *.exe | |
9 *.dll | |
10 *.out | |
11 | |
12 # Ignore user-specific files | |
13 .idea/ | |
14 .vscode/ | |
15 | |
16 # Ignore system files | |
17 .DS_Store | |
18 Thumbs.db | |
19 | |
20 # Ignore node modules | |
21 node_modules/ | |
22 | |
23 # Ignore compiled TypeScript | |
24 *.js | |
25 *.js.map | |
26 | |
27 # Ignore Go binary | |
28 | |
29 # Ignore Docker artifacts | |
30 | |
31 # Ignore dependencies | |
32 vendor/ | |
33 | |
34 # Ignore compiled Python files | |
35 *.pyc | |
36 __pycache__/ | |
37 | |
38 # Ignore compiled Java files | |
39 *.class | |
40 | |
41 # Ignore temporary files | |
42 *.tmp | |
43 | |
44 # Ignore editor backup files | |
45 *~ | |
46 *.swp | |
47 *.swo | |
48 *.swn | |
49 *.swm | |
50 *.swl | |
51 | |
52 # Ignore environment variables file | |
53 .env | |
54 | |
55 # Ignore build artifacts | |
56 build/ | |
57 dist/ | |
58 | |
59 # Ignore database migrations | |
60 database/migrations/*.sql |