git commands for terminal code example

Example 1: how to use git in terminal

create new repo-git
echo "# SqlMentor" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin
https://github.com/asd/SqlMentor.git git push -u origin
master
push an existing repo-git
git remote add originhttps://github.com/asd/SqlMentor.git
git push -u origin master
Default editor

Example 2: git basic commands

git push origin <branchname>

Example 3: git basic commands

git clone username@host:/path/to/repository