无法将新目录添加到Heroku中的现有项目中

时间:2018-09-16 01:27:28

标签: git

无法将新文件夹添加到现有项目。在我的项目中,我向projects/添加了一个新目录,但是git add .无法正常工作。还尝试了git add projects/ .,但没有成功。

labanino:pixelandbyte ghostrider$ git add projects/ .
labanino:pixelandbyte ghostrider$ git status
On branch master
Your branch is up-to-date with 'heroku/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:   projects/gcg (modified content, untracked content)

no changes added to commit (use "git add" and/or "git commit -a")

我能够推送到网站的根目录,但不能推送到projects/

1 个答案:

答案 0 :(得分:0)

我不知道如何,但是我在.git tracking目录中有一个projects/文件。因此,我运行rm -rf .git*并解决了问题。