git add* code example
Example 1: git add origin command
# To add origin
$ git remote add origin <github repo link>
Example 2: git add
//to add a single file
git add <FILE_NAME>
//to add all changed files
git add -A
Example 3: git add .
git add <file> or you can do git add -A to add all files