所有写到.gitignore这个文件里面的文件都会被忽略
首先创建测试文件
[root@git git]# touch fuchao.o
查看工作区文件状态
[root@git git]# git status
Untracked files:
(use "git add <file>..." to include in what will be committed)
fuchao.o
创建 .gitignore 并且把测试的文件名写进去
[root@git git]# echo fuchao.o >.gitignore
测试,再次查看那工作区状态
[root@git git]# git status
Untracked files:
(use "git add <file>..." to include in what will be committed)
.gitignore
可以看到测试文件被隐藏了
加入你不想让.gitignore显示出来,可以把文件添加到暂存区
[root@git git]# git add .gitignore
再次查看的话,就不见了