Still untracked files even after using git add -
guys, after using "git add ." still have untracked files can't commit.
there question same problem, in case related case-sensitive folder. didn't change name of folders here.
the .
in git add .
command refers "current directory". so, running git add .
add files in current directory , subdirectories. should ensure in correct directory before running git add .
.
if you're 1 level down in subdirectory, git add ..
equivalent cd ..; git add .
.
Comments
Post a Comment