We are using git for source control using GitLab. The problem is, I created a new branch with no uncommitted files in the repository from where i created the branch and it is showing the modified folder and not files as follows,
# On branch 114531
# 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: 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 to commit (use "git add" and/or "git commit -a")
What is actually wrong? Why i'm not seeing files and only seeing folders? And how to make it to show all the modified files instead of folder? Please help friends.