Task 1: Repository Setup
- GitHub Repository Creation:
-
Log in to your GitHub account.
-
Create a new repository on GitHub (let's call it "PLPBasicGitAssignment").
-
Initialize it with a README file. Task 2: Local Setup
- Local Folder Setup:
-
Create a new folder on your local machine (e.g., "PLPBasicGitAssignment").
-
Open a terminal or command prompt and navigate to the created folder.
- Git Initialization:
- Initialize a new Git repository in your local folder.
- Connecting to GitHub:
- Link your local repository to the GitHub repository you created in Task 1.
git remote add origin 6. Committing Changes:
- Stage the changes. git add hello.txt
- Commit the changes.
git commit -m "Add hello.txt with a greeting" 7. Pushing to GitHub:
git push -u origin main