3 examples for git add

{{ score }}
  # Stages only the modified files.  Great if you've moved some files into a subfolder and you want to keep their git history.
git add -u
        
{{ score }}
  # track all new files without staging them for commit
git add -NA
        
{{ score }}
  # Add a folder to the index
git add ./folder