/Student-portal

Online tools for students to manage documents

Primary LanguageJavaScriptMIT LicenseMIT

Student-portal

In this project we will try to include all those work that Students and working professional neeeded to done in short time ,using this web application

Open Source Love PRs Welcome


Tech-Stack used :

HTML 5 CSS3 JS

Star ⭐️the repo to get frequent updates & appreciate the efforts.

How to get started? 🏗

To start contributing you need to follow the below steps in proper order

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'll be visible in your account.

git clone  https://github.com/shivshankar9/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 advused 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:heavy_check_mark: .

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 conficts

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 🥳.