Git Frequently Used Commands

Git is a Version Control System software used to keep track of changes in computer code bases, including configuration files. I have found the following commands useful.

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”