Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 268 Bytes

add.md

File metadata and controls

14 lines (11 loc) · 268 Bytes

git add

Trick with -A

#
# only adds from the folder you are in recursively 
# but not above (you might miss some files, when you are in a subfolder 
git add . 

## Fix -A 
# adds everything no matter in which folder you are in your project 
git add -A