hello_rocker_dot_com Asked: 2018-01-08 01:14:59 +0800 CST 如何让 git 单独选择当前目录中的 txt 文件 8 如何选择.txt当前目录中所有以结尾的文件,但忽略子目录中的所有文件? *.txt选择所有以.txt子目录结尾的文件。我该如何省略它们? 目录结构: current folder |-first_file.txt |-sub_folder |-second_file 我正在尝试将 first_file 单独添加到 git 存储库中。但是这样做git add *.txt会将第一个和第二个文件都添加到阶段。我只想添加 first_file。 git wildcards