使用magit选择要暂存到新目录的文件


20

如果创建新目录,则其文件不会显示为magit-status,只有新目录位于Untracked项列表中。

目前,我必须magit-stage-item新目录,然后从舞台区域中删除不需要的文件。

有什么方法可以选择要从新目录暂存的文件吗?

Answers:


29

跑:

git config status.showUntrackedFiles all

或者如果您想在所有存储库中启用它:

git config --global status.showUntrackedFiles all

并刷新状态缓冲区。最初,您仍然只会看到包含未跟踪文件的目录,而不是文件本身。但是,现在可以使用扩展这些目录部分TAB

直接使用Git时,使用的一个可能的缺点status.showUntrackedFiles all性能降低的可能性 -Magit实际上抵消了这一点。


有没有一种方法可以全局应用此设置?如何将其添加到〜/ .gitconfig文件中?
krystalcode '16

@krystalcode:尝试git config --global修改全局设置。
Toxaris
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.