]> cat aescling's git repositories - mastodon.git/blob - .gitignore
Default follows for new users (#4871)
[mastodon.git] / .gitignore
1 # See https://help.github.com/articles/ignoring-files for more about ignoring files.
2 #
3 # If you find yourself ignoring temporary files generated by your text editor
4 # or operating system, you probably want to add a global ignore instead:
5 # git config --global core.excludesfile '~/.gitignore_global'
6
7 # Ignore bundler config and downloaded libraries.
8 /.bundle
9 /vendor/bundle
10
11 # Ignore the default SQLite database.
12 /db/*.sqlite3
13 /db/*.sqlite3-journal
14
15 # Ignore all logfiles and tempfiles.
16 /log/*
17 !/log/.keep
18 /tmp
19 coverage
20 public/system
21 public/assets
22 public/packs
23 public/packs-test
24 .env
25 .env.production
26 node_modules/
27 build/
28
29 # Ignore Vagrant files
30 .vagrant/
31
32 # Ignore Capistrano customizations
33 config/deploy/*
34
35 # Ignore IDE files
36 .vscode/
37 .idea/
38
39 # Ignore postgres + redis volume optionally created by docker-compose
40 postgres
41 redis
42
43 # Ignore Apple files
44 .DS_Store
45
46 # Ignore vim files
47 *~
48 *.swp
49
50 # Ignore npm debug log
51 npm-debug.log
52
53 # Ignore yarn log files
54 yarn-error.log
55 yarn-debug.log
56
57 # Ignore Docker option files
58 docker-compose.override.yml
59
This page took 0.079223 seconds and 6 git commands to generate.