Work with all Files in a git Repo

Work with All files in git Repo

To add all changed files use the -A argument on the command line.

git add -A

To commit all changed and staged files and changes:

git commit -a

or, if you want to enter a command line message:

git commit -am "your commit message here"

Leave a Reply

Your email address will not be published. Required fields are marked *