In this project, we will try to include all types of work that students and working professionals need to do in a short time, using this web application.
0. Create your own issue or choose one already mentioned in under issues section.
1. Fork this repo.
2. Clone your fork copy of the project which will be visible in your account.
git clone https://github.com/<your username>/Student-portal
3. Add a remote upstream to the original repository.
git remote add upstream https://github.com/shivshankar9/Student-portal
4. Check the remotes for the repository.
git remote -v
5. It is always advised to take a pull from the upstream repository to your master branch to keep it even with the main project (updated repository).
git pull upstream master(or main)
6. Create a new branch.
git checkout -b <your_branch_name>
7. Perform your desired changes to the code base.
8. Track your changes. ✔️
git add .
9. Commit your changes.
git commit -m "Message related to changes you made in the code"
10. Push the committed changes in your feature branch to your remote repo.
git push -u origin <your_branch_name>
11. To create a pull request, click on compare and pull requests
. Please ensure that both the branches are even in order to avoid merge conflicts.
12. Add a title and description to your PR explaining the features you added.
13. Click on Create Pull Request
.
14. Congrats !! You made your first PR 🥳.