- git config --global user.name "Tejas" //To set your name
- git config --global user.email "[email protected]" //To set your E-mail ID
- git config --list //gives list of existing config settings.
- git clone // To download/clone entire repo
- git status //To know stages of files. git uses three stages: Unstaged, staged and committed.
- git pull //Sync repo from github to computer
- git push //Sync repo from computer to github
- git add . or git add .a //To stage all file status'
- git commit -m "message" //To commit your code(Locally) with message.
- git log // To browse previous commits