#day8 #90daysofdevops

Table of contents

No heading

No headings in the article.

  1. Create a new repository on GitHub and clone it to your local machine

The first step I did was to log into GitHub account since I am already using it.

and next step i did to go to repository and clicked upon create a new repository

also added some relevant description to the task and clicked upon create repository.

Now I opened my visual studio code and selected folder and clone that repository with

git clone https://github.com/ramnaniakshay/Day-8-90DaysOfDevOps.git

Done with the task 1

  1. Make some changes to a file in the repository and commit them to the repository using Git

now lets go to VS code and create one file like demo.txt and add some content to it and save it.

once I saved it i ran two commands to add to staging area and commit it with proper message.

git add .
git commit -m "new: created new file and added some content"
  1. Push the changes back to the repository on GitHub

and I was able to push the code once again I went to github.com website to verify.

That's the end of Day 8 challenge.