Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在项目的根文件夹中添加所有文本文件。
这不起作用:
$ git add '/*.txt'
会怎样?
转到项目的根文件夹,然后
git add *.txt
警告:不适用于 Windows
您需要从通配符周围删除引号:
会将当前目录中的所有文本文件添加到 git 暂存区。
你可以这样做:
git add ./*.txt
问候!