je tiens à ajouter tous les fichiers de n'importe quoi: s'il est supprimé, de création, de modification, sans traces, etc? je juste ne veux pas git add TOUS mes fichiers à CHAQUE FOIS. J'ai essayé la commande git add -A, mais c'est PAS l'ajout de fichiers modifiés à l'intérieur des dossiers.
voici ma première git status dans mon projet
Rakib-MacBook-Pro:my-xcode-practice rakib$ git status
# On branch master
# 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: BankAccount (modified content, untracked content)
# modified: BuckysButtons (modified content, untracked content)
# modified: multiview (modified content, untracked content)
# modified: rotator (modified content, untracked content)
# modified: segmentedControls (modified content, untracked content)
#
no changes added to commit (use "git add" and/or "git commit -a")
puis j'ai mis la commande git add -Un
Rakib-MacBook-Pro:my-xcode-practice rakib$ git add -A
et puis ici, c'est le nouveau statut APRÈS avoir fait la commande git add -Un
Rakib-MacBook-Pro:my-xcode-practice rakib$ git status
# On branch master
# 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: BankAccount (modified content, untracked content)
# modified: BuckysButtons (modified content, untracked content)
# modified: multiview (modified content, untracked content)
# modified: rotator (modified content, untracked content)
# modified: segmentedControls (modified content, untracked content)
#
no changes added to commit (use "git add" and/or "git commit -a")
vous pouvez voir qu'il n'y a eu aucun changement dans le dépôt git status. comment puis-je résoudre ce problème?
J'ai aussi essayé d' git add .
- il n'a pas aidé
J'ai aussi essayé d' git add *
- il n'a pas aidé