Difference between "git add -A" and "git add ."
The command git add [--all|-A]
appears to be identical to git add .
. Is this correct? If not, how do they differ?
The command git add [--all|-A]
appears to be identical to git add .
. Is this correct? If not, how do they differ?