what is git stage command code example
Example: git stage
git add . (This stages all changes made in the repository)
git add <filename> (Stages the change made in the specific filename)
git add . (This stages all changes made in the repository)
git add <filename> (Stages the change made in the specific filename)