2021-10-12
Git Add - Stage Changes in Various Ways
git add -Astages all changesgit add .stages new files and modifications, without deletions (on the current directory and its subdirectories).git add -ustages modifications and deletions, without new files
With git 2.0 git add <path> is the same as git add -A <path>.
]
Tags:
git