Contributing via GitHub
Welcome to FOSS Community, University of Kelaniya (FOSSUOK)! We maintain several repositories, including the FOSS_Official_Website. This guide will help new contributors get started with contributing to our repositories directly via GitHub.
1. Cloning the Repository
To contribute, first, clone the repository to your local machine.
Steps to Clone:
-
Open a terminal.
-
Navigate to the directory where you want to store the project.
-
Run the following command:
git clone https://github.com/FOSSUOK/FOSS_Official_Website.git
-
Navigate into the project directory:
cd FOSS_Official_Website
If you are outside the organization, you may need to fork the repository before cloning.
2. Setting Up the Project
After cloning the repository, set up the project environment:
-
Ensure you have Node.js and npm installed.
-
Install project dependencies:
npm install
-
Start the development server:
npm run dev
This will launch the project in your browser at http://localhost:3000/
.
3. Creating a New Branch
Before making changes, create a new branch:
git branch your-feature-branch
git checkout your-feature-branch
Replace your-feature-branch
with a meaningful name for your changes.
4. Making Changes & Committing
-
Make your modifications in the codebase.
-
Stage your changes:
git add .
-
Commit your changes with a meaningful message:
git commit -m "Add feature: brief description"
5. Pushing Changes & Creating a Pull Request
-
Push your branch to GitHub:
git push origin your-feature-branch
-
Go to the repository on GitHub.
-
Click on Pull Requests > New Pull Request.
-
Select your branch and submit the pull request for review.
6. Staying Updated with the Main Repository
To keep your local repository up to date with the latest changes:
git pull origin main
This ensures you are working with the latest version of the project.
By following these steps, you can successfully contribute to FOSSUOK repositories. Happy coding!