Permalink
Please sign in to comment.
Browse files
gitignore file for D
Ignore the usual obj/library/executable files. See https://github.com/D-Programming-Language/dub/blob/89c8dea75ae9cfde1ae6cfb7d9fe03dbccdbbdf8/source/dub/init.d#L168 for dub's default .gitignore.
- Loading branch information...
20
D.gitignore
| @@ -0,0 +1,20 @@ | ||
| +# Compiled Object files | ||
| +*.o | ||
| +*.obj | ||
| + | ||
| +# Compiled Dynamic libraries | ||
| +*.so | ||
| +*.dylib | ||
| +*.dll | ||
| + | ||
| +# Compiled Static libraries | ||
| +*.a | ||
| +*.lib | ||
| + | ||
| +# Executables | ||
| +*.exe | ||
| + | ||
| +# DUB | ||
| +.dub | ||
| +docs.json | ||
| +__dummy.html |
0 comments on commit
611c51a