learn git and github from telusko youtube channel
git
git init -b main git add . git commit -m "commit message" git git remote add origin url_git git push -u origin main/master git pull origin main/master git merge main/master
git remote -v git log git status git diff git checkout main/master git stich main/master git tag // its show all your tags git tag -a version_number -m "commit_message" git show version_number git push origin version_number git log --pretty=online // this shown in one line git branch git switch git checkout -b master // for create new branch git checkout -d master // for delete git merge
"thank you learning git bye"
bye bye git and github