1.约定:
/ 是你本机的git目录的根,不是Linux系统的/(根); /指的是你在目录下执行 git init的那个目录,里面有.git文件夹的
例如:
# cd /opt/test/ # git init # touch test.txt # ls -l /opt/test/test.txt
上面test.txt的根指的就是test/
2.注释: .gitignore里注释用#号
3.目录结构
# cd /opt/test/ # ls t1.txt test.txt t2/ t2/t1.txt t2/t2.cc t2/t3/t.py
在.gitignore里写入以下内容
情况一: 不想 让/opt/test/目录和所有子下的t1.txt 上传到仓库
t1.txt
情况二: 不想让 /opt/test/下的 t1.txt 上传
/t1.txt
情况三: 不想让所有后缀为txt的文件上传
*.txt
情况四:不想让t2/目录下的文件和目录上传
t2/*
情况五:想让t2/目录下 t3/ 子目录上传
!t2/t3/
或
!/t2/t3/
注意
尾随的 /*
很重要:
模式 dir/
排除了一个名为 dir
的目录以及(隐式地)它下的所有内容.
使用 dir/
,Git 永远不会查看 dir
下的任何内容,因此永远不会将任何取消排除"模式应用于 dir.
模式
dir/*
没有说明dir
本身;它只是排除 dir
下的所有内容.使用 dir/*
,
Git 将处理
dir
的直接内容,让其他模式有机会取消排除"某些内容(!dir/sub/
).
参考:
https://www.it1352.com/2639226.html
https://learnku.com/articles/65721
http://t.zoukankan.com/Excr-p-12588385.html
https://blog.csdn.net/cainiao1412/article/details/109517218
标签:git,t2,t1,文件夹,test,txt,dir,gitignore From: https://www.cnblogs.com/wutou/p/16628149.html