2

我正在尝试通过 git 添加我在目录中的每一件事。但是,对于一个特定目录,它会加载文件夹,但不会加载任何内容。我试着用

git add -A

但被退回

# On branch master
# Changes not staged for commit:
#   (use "git add <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#   (commit or discard the untracked or modified content in submodules)
#
#   modified:   sendgrid-php (untracked content)
#
no changes added to commit (use "git add" and/or "git commit -a")

在尝试提交我的更改时。这里可能是什么问题?

4

2 回答 2

1

一种可能的方法是

git add directory/*

或者如果您已经从该目录提交了文件,然后您就可以制作一个

git commit -a

这将添加并提交所有修改过的文件。

于 2013-02-18T00:39:02.500 回答
1

目录sendgrid-php是 git 子模块,因此 git 不会跟踪其中的内容,除非您将 CD 放入其中并提交它们。

于 2013-02-18T00:47:23.430 回答