how to use git in cmd code example
Example 1: git bash in cmd
"C:\Program Files\Git\bin\sh.exe" --login
Example 2: 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