Github Commands
GitHub is a distributed version-control platform where users can collaborate, having versions, share the ideas.
Github commands
git init — To initializa the Git
git log
git status
git add .
git commit -m “Message”
git remote -v
git remote add origin url
git remote push -u master origin
git push origin master
git config –list
If you want to change the global user name then below is the command
git config –global user.name “UserName” –replace-all (If already username is exist)
git config –global user.name “UserName”