So i do some changes in my project and i did git status in terminal and i get
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: X.php
modified: Y.php
modified: Z.php
Untracked files:
(use "git add <file>..." to include in what will be committed)
A.php
B.php
So my question is if i now do git add . all the 5 files will be add? cuz i need A and B file to merge.
Or i need to use another command to track A and B file again