Git Basics Cheatsheet
1. Repository Creation
To create a new local repository from start :
$ git init
To clone a existing repository :
$ git clone your_url
2. Repository Observation
Shows new or modified files not yet committed :
$ git status
Shows the changes made to ...
yashkumar.hashnode.dev2 min read