pda-mit / PDA-Website

Official PDA-MIT Website Building Repo
MIT License
5 stars 28 forks source link

PDA-Website

Official PDA-MIT Website Building Repo Do Star the Repo on top right

Contribution Guidelines :computer:

Step 1: Fork the Repository
Click on to fork this repsository

Step 2: Cloning Repository using Git
```bash git clone https://github.com/''/PDA-Website.git ```

Step 3: Change directory to PDA-Website
```bash cd PDA-Website ```

Step 4: Add reference to the original repository
```bash git remote add upstream https://github.com/pda-mit/PDA-Website.git ```

Creating a New Branch πŸ› 

:one: Always keep updating your master branch with the main repository by running the following command on the local master branch. Here the default master branch is the main branch.

git pull upstream main

:two: Always create a new branch before making any changes. Never ever make any changes directly on the master branch. To create a new branch,

git checkout -b '<new-branch-name>'

Setup Guidelines βš™οΈ

Installation using NPM and MongoDB


Run on Localhost πŸ‘¨β€πŸ’»

Commiting the changes and Making Pull Request πŸš€

:one: After Editing files in the new branch Stage your changes

git add .

:two: Commit your changes

git commit -m '<your_commit_message>'

:three: Check for Status to be sure everything is added

git status

:four: Check for your remote

git remote -v

:five: Push changes to remote