Git Dodaj wszystkie śledzone pliki
// stages all modifications and deletions, without new files.
git add -u
// stages new files and modifications, without deletions.
git add .
// stages all changes.
git add -A
Xenomorph