git - GitLab showing modified folders instead of files -


we using git source control using gitlab. problem is, created new branch no uncommitted files in repository created branch , showing modified folder , not files follows,

# on branch 114531 # changes not staged commit: #   (use "git add <file>..." update committed) #   (use "git checkout -- <file>..." discard changes in working directory) #   (commit or discard untracked or modified content in submodules) # #   modified:   lib/library/cl (new commits) #   modified:   lib/library/fw (new commits) #   modified:   plugins/cpp (new commits, modified content) #   modified:   plugins/crbp (new commits) #   modified:   plugins/cup (new commits) #   modified:   plugins/slp (new commits) #   modified:   plugins/sip (new commits) # no changes added commit (use "git add" and/or "git commit -a") 

what wrong? why i'm not seeing files , seeing folders? , how make show modified files instead of folder? please friends.

why i'm not seeing files , seeing folders?

because submodule entries reports new commits.

if have done new commits in submodule, should push those, , go parent repo (the 1 are), add submodule entries (git add .), commit , push.

a git submodule update reset submodule original state.

see more @ "ignore new commits git submodule".


Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -