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 -i
如果我对现有文件进行更改,那没关系。但是创建一个新文件,它被标记为未跟踪并且git add -i不会拾取它。
当您在“git add -i”的交互式会话中时,您可以使用选项 4 添加未跟踪的文件
有时git add .并git add -i不会暂存所有更改,无论是跟踪的还是未跟踪的。git gui如果您安装了它,您可以尝试使用来选择要暂存的文件。
git add .
git gui