how to git add code example

Example 1: github command for adding all files

To add all files in Git Staging Area

git add .

Example 2: 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 3: add a file to git

/* go to the folder, open the terminal and type this commands */

	git init
    git add .      /* . => it is to add all the files */
    git commit -m "first_commit"
    git remote add origin https://github.com/yourusername/your-repo-name.git
    git pull origin master
    git push origin master
    
/* sometimes we have to force push =>  git push --force 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 .

git add <file> or you can do git add -A to add all files