浏览代码

.gitignore comments in correct format

Scott Lahteine 8 年前
父节点
当前提交
17bd77031f
共有 1 个文件被更改,包括 35 次插入36 次删除
  1. 35
    36
      .gitignore

+ 35
- 36
.gitignore 查看文件

1
-/**
2
- * Marlin 3D Printer Firmware
3
- * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4
- *
5
- * Based on Sprinter and grbl.
6
- * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
7
- *
8
- * This program is free software: you can redistribute it and/or modify
9
- * it under the terms of the GNU General Public License as published by
10
- * the Free Software Foundation, either version 3 of the License, or
11
- * (at your option) any later version.
12
- *
13
- * This program is distributed in the hope that it will be useful,
14
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
- * GNU General Public License for more details.
17
- *
18
- * You should have received a copy of the GNU General Public License
19
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
- *
21
- */
22
-
23
-// Our automatic versioning scheme generates the following file
24
-// NEVER put it in the repository
1
+#
2
+# Marlin 3D Printer Firmware
3
+# Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4
+#
5
+# Based on Sprinter and grbl.
6
+# Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
7
+#
8
+# This program is free software: you can redistribute it and/or modify
9
+# it under the terms of the GNU General Public License as published by
10
+# the Free Software Foundation, either version 3 of the License, or
11
+# (at your option) any later version.
12
+#
13
+# This program is distributed in the hope that it will be useful,
14
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
+# GNU General Public License for more details.
17
+#
18
+# You should have received a copy of the GNU General Public License
19
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
+#
21
+
22
+# Our automatic versioning scheme generates the following file
23
+# NEVER put it in the repository
25
 _Version.h
24
 _Version.h
26
 
25
 
27
-//
28
-// OS
29
-//
26
+#
27
+# OS
28
+#
30
 applet/
29
 applet/
31
 *.DS_Store
30
 *.DS_Store
32
 
31
 
33
 
32
 
34
-//
35
-// Misc
36
-//
33
+#
34
+# Misc
35
+#
37
 *~
36
 *~
38
 *.orig
37
 *.orig
39
 *.rej
38
 *.rej
45
 *.swp
44
 *.swp
46
 
45
 
47
 
46
 
48
-//
49
-// C++
50
-//
47
+#
48
+# C++
49
+#
51
 # Compiled Object files
50
 # Compiled Object files
52
 *.slo
51
 *.slo
53
 *.lo
52
 *.lo
79
 *.app
78
 *.app
80
 
79
 
81
 
80
 
82
-//
83
-// C
84
-//
81
+#
82
+# C
83
+#
85
 # Object files
84
 # Object files
86
 *.o
85
 *.o
87
 *.ko
86
 *.ko

正在加载...
取消
保存