This repository is part of a basic Git and GitHub assignment to practice setting up a repository, making commits, and pushing changes.
- Created a GitHub repository and initialized it with a README.
- Created a local folder and connected it to the GitHub repository.
- Added a text file (
hello.txt
) with a greeting message. - Staged and committed the changes.
- Pushed the changes to GitHub.
- Checked status of repository
cd /f/OneDrive/Projects/Classes/Power\ Learn\ Project/code/PLPBasicGitAssignmentNew
git init
$ git remote add origin https://github.com/SubZeroow/PLPBasicGitAssignmentNew
git add hello.txt
git commit -m "Added hello.txt with a greeting"
git push -u origin main
git status