Basic Git commands1 minTable of ContentsPull from remote github:Setup local git instance:Push to github:Useful git commands.Pull from remote github: #git pull Setup local git instance: #git init Push to github: #git add . # Add files to repo git commit -m "" # Commit files to local repo git push -u origin main git push