Open Abhijay007 opened 3 years ago
@vasudevsinghal I want to work on this issue
GO ahead @carltos0411
I am just a beginner in open source and I am looking forward to work on this issue, Can someone help me through it. Thanks in advance!
@priyansh11786 sorry for the late response you can follow these steps for Opening a PR in future.
first follow these steps to setup project locally in your machine:
1. Fork this repository.
2. Clone your forked copy of the project.
git clone --depth 1 https://github.com/<your_user_name>/codeforcause.org.git
3. Navigate to the project directory :file_folder: .
cd codeforcause.org
4. Add a reference(remote) to the original repository.
git remote add upstream https://github.com/codeforcauseorg/codeforcause.org.git
5. Check the remotes for this repository.
git remote -v
6. Always take a pull from the upstream repository to your master branch to keep it at par with the main project(updated repository).
git pull upstream master
7. Create a new branch.
git checkout -b <your_branch_name>
8. Perform your desired changes to the code base.
9. Track your changes:heavy_check_mark: .
git add .
10. Commit your changes .
git commit -m "Relevant message"
11. Push the committed changes in your feature branch to your remote repo.
git push -u origin <your_branch_name>
12. To create a pull request, click on `compare and pull request. Please ensure you compare your feature branch to the desired branch of the repo you are supposed to make a PR to.
YOU can read more about additional guidelines for beginners and the good first issue in the project readme.
once you can run the project locally, you can proceed further to find a bug or add a feature.
Ctrl + shift+ I
to open it) to find from where this bug is genreted, (you can also use inspect to find possible class name and Ids associated with the code that you want to change).screenshot for better understanding
once you are done with all this follow the above steps or steps given in readme to Open a PR.
I already opened a PR for this issue you can see changes here #298 you can also review it if you want :)
Hello @Abhijay007
It's been a long time & I guess Priyansh is not working on this issue.
Can I start working on this issue? I am getting started with open-source. Thank you!
Sure. Go ahead @SugatoBagchi
There is an unwanted swiper-pagination-bullet on the home page.
screenshot