how to add in git code example

Example 1: upload new repo to git

echo "# Can-I-Shop-2" >> README.md
git init
git add .
git commit -m "first commit"
git remote add origin https://github.com/username/projectname.git
git push -u origin master

Example 2: github command for adding all files

To add all files in Git Staging Area

git add .

Example 3: create repository in github using command line

git init
git add somefile
git commit -m "initial commit"
git remote add origin https://github.com/username/new_repo
git push -u origin master 

# New local repository
git init
git add .
git commit -m "Initial commit"

# New remote repository
# Create remote repository (likely on github), then:
git remote add origin https://github.com/username/new_repo #https
git remote add origin [email protected]:username/new_repo #ssh
# Now push
git push -u origin master

Example 4: Git add

git add .

git commit -m "Bug Fixed"

git push

Example 5: git add

//to add a single file
git add <FILE_NAME>

//to add all changed files
git add -A

Example 6: git add

//to add file to the repository
1. git add yourFilePath

//if you want to add all file then
2. git add .