Add and remove files to staging area
add files to the staiging before commit:
git add .
or
git add --A
or
git add --all 
alternativly we can add each file by name:
git add <file name>
for remove added files from staging area:
git reset <filename> 
or remove all files:
git reset
by Guram Azarashvili
2 years ago
Git
Get started
Git Tutorials
0
Pro tip: use ```triple backticks around text``` to write in code fences