https://github.com/veranyagaka/plpbasicgitassignment
https://github.com/veranyagaka/plpbasicgitassignment
assignment github github-actions
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/veranyagaka/plpbasicgitassignment
- Owner: veranyagaka
- Created: 2024-03-11T16:50:30.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-11T20:40:56.000Z (over 2 years ago)
- Last Synced: 2025-02-09T00:16:26.138Z (over 1 year ago)
- Topics: assignment, github, github-actions
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PLPBasicGitAssignment
Task 1: Repository Setup
1. 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
2. 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.
3. Git Initialization:
- Initialize a new Git repository in your local folder.
4. 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