We are a group of like-minded individuals who believe in the power of coming together to achieve shared goals. Our mission is to create a safe and inclusive space where members can connect, collaborate, and make a positive impact in the world. Join us and be a part of something bigger than yourself!
- Frontend: HTML5, CSS3, JavaScript
- IDE: VS Code
- Version Control: Git and GitHub
Frontend
- Fork and clone the Repo by typing the following commands in the terminal
$ git clone https://github.com/<your-github-username>/Community-Site.git
$ cd Community-Site
- Now to add your resource to a website, add an object with keys the same as listed in existing objects in the file.
- Save and commit your code.
- Push to your fork of the repository, navigate to the original repository, and make a pull request.
- Make changes to the code(for ex- add an update route)
- Stage your changes using:
$ git add .
- Commit your changes using:
$ git commit -m "add any comment"
- Push the changes to the forked repository using:
$ git push
- Navigate to the original repository and make a pull request
Showing Your Remotes
$ git remote
$ git remote -v
Adding Remote Repositories
git remote add upstream https://github.com/Its-Aman-Yadav/Community-Site.git
Pulling from Your Remote
$ git pull upstream main