Github CLS
5 Really common and useful CLS of Github
First of all cd to the repository to you want to put your file locally
Step 1: Clone the Github repository to your local folder
$ git clone github repository https link
Step 2: Add new file to Github
$ git add filename
Step 3: Commit the file to Github
$ git commit -m ‘something you would like to add’
Step 4: (optional) Check the status
$ git status
Step 5: Push the file to Github repository
$ git push











