Answers for "how to use git in terminal"

9

how to login to git from terminal

git config --global user.name "your_username"
Posted by: Guest on July-23-2020
7

how to login to git from terminal

git config --global user.email "[email protected]"
Posted by: Guest on July-23-2020
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
Posted by: Guest on January-28-2021
0

git bash in cmd

"C:\Program Files\Git\bin\sh.exe" --login
Posted by: Guest on December-16-2020

Code answers related to "how to use git in terminal"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language