-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitignore
46 lines (41 loc) · 833 Bytes
/
.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
# ignored files in the home directory
# ~/.gitignore-global is now git's systemwide ignore file.
# ignore any file or dir that doesn't begin with a dot
/[^.]*
# ignore all directories, they're rarely worth versioning
/.[^.]*/
!/.atom/
!/bin/
# put ssh commands alieases etc that you want to keep private here
/.bashrc-private
# ignore these common files
/.dotfiles.git
/.viminfo
/.*[._-]hist
/.*[._-]history
/.*[._-]auth
/.*[._-]lock
/.*[._-]cookie
/.xsession-errors*
/.Xauthority
# finally, the poorly named ones
/.CFUserTextEncoding
/.dmrc
/.eaglerc
/.gitk
/.gtk-bookmarks
/.guvcviewrc
/.ICEauthority
/.imsettings.log
/.lesshst
/.netrc
/.nix-profile
/.rnd
/.serverauth.*
/.sublime
/.sudo_as_admin_successful
/.wget-hsts
/.Xauthority
# can't store .yarnrc yet: https://github.com/yarnpkg/yarn/issues/4134
/.yarnrc
/.zcompdump*