Skip to content

Commit 138694b

Browse files
mofeingPangoraw
andauthored
Update .gitignore rules (#23)
* Ignore Windows,macOS,Linux,VSCode and Julia-related files * Update .gitignore Co-authored-by: Paul Berg <[email protected]> --------- Co-authored-by: Paul Berg <[email protected]>
1 parent 6fb9e27 commit 138694b

File tree

1 file changed

+104
-1
lines changed

1 file changed

+104
-1
lines changed

Diff for: .gitignore

+104-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,105 @@
1+
*~
2+
3+
# temporary files which can be created if a process still has a handle open of a deleted file
4+
.fuse_hidden*
5+
6+
# KDE directory preferences
7+
.directory
8+
9+
# Linux trash folder which might appear on any partition or disk
10+
.Trash-*
11+
12+
# .nfs files are created when an open file is removed but is still being accessed
13+
.nfs*
14+
15+
# Windows thumbnail cache files
16+
Thumbs.db
17+
Thumbs.db:encryptable
18+
ehthumbs.db
19+
ehthumbs_vista.db
20+
21+
# Dump file
22+
*.stackdump
23+
24+
# Folder config file
25+
[Dd]esktop.ini
26+
27+
# Recycle Bin used on file shares
28+
$RECYCLE.BIN/
29+
30+
# Windows Installer files
31+
*.cab
32+
*.msi
33+
*.msix
34+
*.msm
35+
*.msp
36+
37+
# Windows shortcuts
38+
*.lnk
39+
40+
# General
41+
.DS_Store
42+
.AppleDouble
43+
.LSOverride
44+
45+
# Icon must end with two \r
46+
Icon
47+
48+
49+
# Thumbnails
50+
._*
51+
52+
# Files that might appear in the root of a volume
53+
.DocumentRevisions-V100
54+
.fseventsd
55+
.Spotlight-V100
56+
.TemporaryItems
57+
.Trashes
58+
.VolumeIcon.icns
59+
.com.apple.timemachine.donotpresent
60+
61+
# Directories potentially created on remote AFP share
62+
.AppleDB
63+
.AppleDesktop
64+
Network Trash Folder
65+
Temporary Items
66+
.apdisk
67+
68+
.vscode/*
69+
!.vscode/settings.json
70+
!.vscode/tasks.json
71+
!.vscode/launch.json
72+
!.vscode/extensions.json
73+
!.vscode/*.code-snippets
74+
75+
# Local History for Visual Studio Code
76+
.history/
77+
78+
# Built Visual Studio Code Extensions
79+
*.vsix
80+
81+
# Files generated by invoking Julia with --code-coverage
82+
*.jl.cov
83+
*.jl.*.cov
84+
85+
# Files generated by invoking Julia with --track-allocation
86+
*.jl.mem
87+
88+
# System-specific files and directories generated by the BinaryProvider and BinDeps packages
89+
# They contain absolute paths specific to the host computer, and so should not be committed
90+
deps/deps.jl
91+
deps/build.log
92+
deps/downloads/
93+
deps/usr/
94+
deps/src/
95+
deps/mlir-jl-tblgen
96+
97+
# Build artifacts for creating documentation generated by the Documenter package
98+
docs/build/
99+
docs/site/
100+
101+
# File generated by Pkg, the package manager, based on a corresponding Project.toml
102+
# It records a fixed state of all packages used by the project. As such, it should not be
103+
# committed for packages, but should be committed for applications that require a static
104+
# environment.
1105
Manifest.toml
2-
docs/build

0 commit comments

Comments
 (0)