#create a new repo, initialize with readmefile #create a folder #navigate to the folder in your command prompt(gitbash) #initialize using git init #link the git repository to the github repository by using (git remote add origin {the repository url}). #make changes by creating a new text file in your local folder "PLPBasicGit Assignment", name it hello.txt. #stage using (git add {the text file}) #commit using( git commit -m "Add hello.txt with a greeting") #push using (git push -u origin main/master). #visit your github, verify changes, check commit messages and copy your url for submission.