Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

git add all tracked files

// stages all modifications and deletions, without new files.
git add -u

// stages new files and modifications, without deletions.
git add .

// stages all changes.
git add -A
 
PREVIOUS NEXT
Tagged: #git #add #tracked #files
ADD COMMENT
Topic
Name
5+3 =