Answers for "why using command line with git"

11

git from command line

git status
git add . (for al your files)
git add name to add just certain files
git commit -m "message"
git push
Posted by: Guest on March-24-2021
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

Code answers related to "why using command line with git"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language