gitignore,以某个扩展名跟踪所有文件,但一个特定文件除外

问题描述 投票:1回答:1

我不必忽略示例中某个扩展名(json)的所有文件,而仅忽略具有相同扩展名的一个特定文件,例如:

# Ignore all files by default, but scan all directories
*
!*/

# track all json files
!*.json

# but don't track this one
Target.json

问题是Target.json被跟踪,如何忽略它?

gitignore
1个回答
0
投票

尝试并反转两个规则:

© www.soinside.com 2019 - 2024. All rights reserved.