Initialize a local repo Run the following command in the folder where you would like to initialize a git repo. git init Get status It is a good practice to frequently run check on status during development. The following command points out the changes between the previous commit and current state of the folder. git status Add content To add an untracked file named ‘text.txt’ to the staging area, execute the following command. git add text.txt Syntax: git add <filename> Commit changes To commit changes made to the folder, execute the following command. The message will be used as a commit message to associate this check-in with the message. git commit –m “Add text.txt to the code base.” Syntax: git commit –m “<Commit message>” Add using wild card To add multiple files using a wild card character, execute the following command. git add ‘*.txt’ Syntax: git add ‘<wildcard_character+string>’ Check history Rev...