如何将所有文件添加到定义目录中的git repo

时间:2017-09-29 17:36:35

标签: git github

我知道如何添加当前目录中的所有文件

git add .

如何定义目录?像这样的东西?似乎不起作用。

git add . ~/local-repo/

1 个答案:

答案 0 :(得分:0)

您正在寻找-C选项:

git -C ~/local-repo/ add .

从联系手册:

-C <path>
   Run as if git was started in <path> instead of the current working directory.

它允许您在git存储库上执行操作,就像您在其中一样。