-
Notifications
You must be signed in to change notification settings - Fork 25
/
.gitignore
68 lines (59 loc) · 899 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Build files
/build
src/kernel/kernel.bin
src/kernel/flash.bin
src/kernel/boot-commands
src/kernel/card.sd
src/kernel/src/test/test.c
src/kernel/build
# Toolchain dir, but not the build script
src/toolchain/
!src/toolchain/build.sh
# Qemu dir, again without its buildscript
src/qemu/
!src/qemu/build.sh
# Generic build dirs
src/build
/cmake-build-*/
# Generated docs
src/docs/
src/html/
src/latex/
src/course_os_docs.pdf
# Editor specific
.settings/
.cproject
.project
/.idea/
!/.idea/runConfigurations
/.vscode/
!/.vscode/launch.json
!/.vscode/tasks.json
*~
*.swp
[._]*.s[a-w][a-z]
[._]s[a-w][a-z]
*.un~
Session.vim
.netrwhist
# CCLS files
.ccls-cache/
compile_commands.json
# Binary files
*.o
*.img
*.map
*.elf
*.bin
/user/hello/hello
/user/hello/hello1
/user/hello/hello2
/user/libc/libc.a
# Floobits (CLion collabrative editing plugin)
.floo
.flooignore
# Misc
NOTES
/server.PID
*~
#*