Join our discord server https://discord.gg/T3aNcx for discussions related to this website and other off topic discussions.
The color pallet below is to be followed to maintain a uniform look across all the web pages. Still you are free to use any other color but they should match with the colors below.
- All commits need to be made via pull requests.
- old code from https://github.com/ayushsatyam146/SMVDUCodeClub can be used but avoid directly copying the whole file and instead only copy the important part from it. Keep the code as clean as possible.
- Add necessary comments wherever possible.
1. HTML
2. CSS
4. JAVASCRIPT
- Ability to use Git and Github is mandatory
- Working knowledge of HTML and CSS
- UI/UX skills are appreciable but not mandatory
- Additional backend skills of NodeJS
1. Fork this repository π΄
2. Clone your forked repository to your local system π₯
git clone https://github.com/<your-github-username>/smvdu-codeclub
3. Navigate to the project directory.
cd smvdu-codeclub
4. Create a new branch.
git checkout -b <your_branch_name>
5. Make changes in source code.
6. Commit your changes.
Type in a message relevant for the code reveiwer using
```sh
# This message get associated with all files you have changed
$ git commit -m "description about changes"
```
7. Push your local branch to the remote repository.
git push -u origin <your_branch_name>
8. Create a Pull Request!
Finally, go to your repository in browser and click on compare and pull requests
.
Then add a title and description to your pull request that explains your precious effort.
click on Compare and Pull Request
Congratulations! Sit and relax, you've made your contribution to SMVDU CODECLUB project.
- First add upstream to your local git. (make sure you are in your master branch)
git checkout master
git remote add upstream https://github.com/vinayaksh42/smvdu-codeclub.git
- Then fetch the content from the github
git fetch upstream
- After fetching content from the github merge these content into your local branch
git merge upstream/master