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

Popular posts from this blog

haskell - Using filter on an item in a list? -

c# - When does PreApplicationStartMethod actually get triggered to run? -

tomcat6 - Exception when stopping container for a with Spring + Quartz + Tomcat web application -