无法将新文件夹添加到现有项目。在我的项目中,我向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/
。
答案 0 :(得分:0)
我不知道如何,但是我在.git tracking
目录中有一个projects/
文件。因此,我运行rm -rf .git*
并解决了问题。