gitignore
# gitignore
简介:.gitignore 可以忽略你不想上传的文件,比如 doc,target,classes 等等
# 清除已经上传的多余文件
- 如果是文件夹:git rm -r --cached 文件夹名
- 如果是文件:git rm --cached 文件名
# vue project .gitinore demo
.DS_Store
node_modules
/dist
.history/
# local env files
.env.local
.env.*.local
update_*.sh
package-lock.json
# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
.scannerwork/
sonar-project.properties
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
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
更新时间: 3/11/2021, 10:44:08 AM