我克隆了一个空的远程存储库。然后我将我的项目文件夹添加到包含所有代码的克隆存储库中。
当我说git status时,它会说:
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: MyCodeFolder (modified content, untracked content)
此时我发出以下git命令:
git add MyCodeFolder
当我执行git状态时,我再次看到相同的消息。
如何添加&#34; MyCodeFolder&#34;到repo文件夹?我究竟做错了什么?