-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
91 lines (72 loc) · 1.71 KB
/
.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# ไฟล์วัตถุ (.o) และไฟล์อื่น ๆ ที่เกิดจากการ Compile
*.o
*.obj
*.lo
*.la
*.a
*.so
*.dll
*.dylib
*.exe
# ไฟล์บันทึกการ Compile
*.log
# ไฟล์ที่สร้างโดย IDE
*.swp
*~
*.tmp
*.ide
# ไฟล์ที่เกี่ยวข้องกับโปรเจกต์ CMake
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
Makefile
# ไฟล์ที่สร้างจากการ Build
/build/
bin/
lib/
*.out
# ไฟล์ชั่วคราวจากระบบ
.DS_Store
Thumbs.db
# ไฟล์ที่สร้างโดย Visual Studio
*.vcxproj*
*.sln
*.user
*.filters
# ไฟล์ที่เกี่ยวข้องกับ GDB/Debugging
*.gch
*.dSYM/
*.core
# ไฟล์ที่เกี่ยวกับ Git เอง
.git/
# ไฟล์บันทึกการทำงานของโปรแกรม
*.log
*.pid
# ไฟล์อื่น ๆ ที่ควร Ignore
.idea/
.vscode/
*.bak
*.old
*.pyc
*.class
# ignore all file since root directory to all sub folder
# *.exe
# ignore all files only root directory
# /*.exe
# ignore all files in folder specific only you define not interest subfolder
# folder/*.exe
# ignore all file including folder specific & all subfolder you specific
# folder/**/*.exe
# ignore all files exception some file
# *.exe
# !important.exe
# ignore all files exception some folder
# *.exe
# !include/*.exe
# ignore all specific you folder name define root to subfolder
# folder/
# ignore all specific you folder name define root to subfolder but not include subfolder
# folder/*
# !folder/*.exe
# ignore start this folder name
# temp_*