-
Go to the GitHub Repository: Open the repository link: Community-Website GitHub Repo.
-
Navigate to the Issues Tab: Click on the "Issues" tab near the top of the repository page.
-
Click on “New Issue”: This will open a new issue form where you can describe the problem or feature request.
-
Provide Issue Details:
- Title: Give a concise title for the issue.
- Description: Include detailed information about the issue or feature request. Be as specific as possible about what needs to be changed or added.
-
Submit the Issue: Click the "Submit new issue" button to create the issue. You will need to wait for it to be assigned to you by the maintainers (Happy Yadav or Veedansh ).
-
Open VS Code: Start Visual Studio Code.
-
Open Terminal in VS Code: Use the shortcut
Ctrl+`` or navigate to
View > Terminal`. -
Clone the Repository: Enter the following command in the terminal:
git clone https://github.com/happyrao78/Community-Website.git
This command copies the repository to your local machine.
-
Navigate to the Repository Directory:
cd 365Days-Website
- Add the Remote Repository:
You may want to add a remote repository (like the main repository or another remote). Use the following command to add it:
git remote add origin https://github.com/happyrao78/Community-Website.git
-
Create a New Branch:
git checkout -b your-branch-name
Replace
your-branch-name
with a descriptive name for your branch. -
Make Changes: Edit the files as needed for your issue.
-
Test Your Changes: Ensure that you thoroughly test your changes to make sure they work as expected. This could involve running the application locally and verifying the modifications.
-
Commit Your Changes:
git add . git commit -m "Brief description of changes"
-
Push Your Branch to GitHub:
git push origin your-branch-name
-
Go to GitHub Repository: Navigate to the repository on GitHub.
-
Create a Pull Request:
- Go to the "Pull requests" tab.
- Click "New pull request."
- Select your branch and compare it with the main branch.
- Provide a descriptive title and detailed description of the changes made.
-
Attach a Sample Video:
- Record a video demonstrating the changes.
- Upload the video to a file-sharing service or attach it to the pull request description if possible.
-
Submit the Pull Request: Click the "Create pull request" button.
Once you've followed these steps, the maintainers will review your pull request, and they might provide feedback or merge it into the main branch.