如何重新开始跟踪从 git 索引中删除的 directories/files?

How to start tracking directories/files again which were removed from git index?

使用下面的命令我从 git 索引中删除了几个目录:

git rm -r --cached <your directory>

现在如何将那些未跟踪的目录再次添加到 git 索引?

只需使用 git add:

再次将它们添加到您的索引中
git add <your directory>

请注意,这将添加所有文件,而不仅仅是那些使用您之前的命令删除的文件。没有办法只能撤销你的命令。