So I have a directory called Codebase
as my default git directory. Within it I have 2 folder for Java and Python.
The directory structure is like this:
Codebase (default git dir)
---- .git
---- .metadata
---- Java
-------- .metadata
-------- Proj1 (git init here)
-------- Proj2 (git init here)
---- Python
-------- Proj1 (git init here)
-------- Proj2 (git init here)
See the following pic to see the problem I'm facing:
As you can see, git status
in Codebase
shows that I have new commits and changes (in other files), but git status
within the project directory shows no changes. This is the same for all other files too. I have no actual changes yet the files appear here.
What's going on?