Clone The Repository
We are doing copy or clone repository.
git clone https://github.com/w3schools-test/w3schools-test.github.io.git
Configure Git
We are doing configuration of git.
git config --global user.name "w3schools-test" git config --global user.email "test@w3schools.com"
Create New Git Branch
We creating new git branch.
git branch branch-name
Git Add More Than One File
We are adding more than one file to git.
git add --all
Git Commit
We are doing git commit.
git commit -m "First release of Hello World!"
Initialize Git
We are doing initialize git.
git init