todo-app-practice
Practice Repo for learning Issues and Pull Requests
Todo App
Hi, I’m Vicky!
This is a simple practice project to learn Issues, Pull Requests, and basic Git workflows.
Features
Add tasks
Delete tasks
Getting Started (Beginner-Friendly Steps)
Step 1: Fork the Repository
-
Go to the main repository on GitHub.
-
Click the Fork button at the top-right corner.
-
This will create a copy of the repository in your GitHub account.
Step 2: Clone the Repository Locally
-
Make sure you have Git installed on your system.
-
Open your terminal or command prompt.
-
Run the following command (replace the URL with your forked repo URL):
git clone
-
Press Enter.
-
Navigate into the cloned folder:
cd
Step 3: Make Changes
-
Open the project in your code editor (e.g., VS Code).
-
Add or modify features (e.g., new task management options).
-
Save your changes.
Step 4: Commit Changes
- In the terminal, stage your changes:
git add .
- Commit your changes with a message:
git commit -m "Add new feature: "
Step 5: Push Changes
- Push your changes to your forked repository:
git push origin main
Step 6: Create a Pull Request
-
Go to your forked repository on GitHub.
-
Click Compare & pull request.
-
Describe your changes and submit the pull request.
Optional: New Things You Can Add
Mark tasks as completed
Edit tasks
Sort tasks by priority
Clear all completed tasks