Reputation: 11
This is my first question in StackOverflow (hello!). :)
The thing is that with my IDE, Visual Studio Code, I can not change the "U" of untracked for an added file.
git init
. git add .
command, the marker it is supposed to change to "A" but it is not the case. git commit -am "first commit"
the file is still displayed as "U"...What it is strange to me is that in the Terminal the changes, modifications, uploadings... are identified by git without any inconvenient, it is just in the Visual Studio User Interface that this thing happen.
Picture1: enter image description here
My Attempts:
Any help is well received. Thank you for your time!.
Upvotes: 1
Views: 312
Reputation: 11
Using the Source Control the file can be added to the stage as well, it has the same result that running a git add (file)
command but using VS Code user interface. See the image below.
Upvotes: 0