抱歉,您的浏览器无法访问本站
本页面需要浏览器支持(启用)JavaScript
了解详情 >

未追踪文件

打开 git 存储仓库的 .gitignore 文件,输入需要排除的文件或文件夹,

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Visual Studio 2015/2017 cache/options directory
.vs/

# User-specific files
*.rsuser
*.suo
*.user
*.userosscache
*.sln.docstates

# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/

# .NET Core
project.lock.json
project.fragment.lock.json
artifacts/

已追踪文件

如果需要忽略之前已经追踪过的文件,仅仅修改 .gitignore 文件是不够的,需要先执行清除缓存命令

1
2
3
4
$ git rm -r --cached .
$ git add .
$ git commit -m "Update .gitignore"
$ git push

评论