Git basics – 01

Command list

git version
git config –global user.name “Sergej Meerkat”
git config –global user.email “[email protected]”
git config –global –listgit clone github-https-url

# paste in your GitHub HTTPS clone URL
cd github-demo
git status
echo “Test Git Quick demo” >> start.txt

cat start.txt
git status
git add start.txt || git add .

#Git add . – Adds all files to staging process
git status
git commit -m “Adding start text file”
git status
git push origin master

Was this article helpful?

Related Articles

Leave A Comment?