We welcome contributions from the community! If you'd like to contribute to this project, follow these steps:
-
Fork the Repository:
- Click on the "Fork" button at the top right corner of the repository page.
-
Clone Your Fork:
- Clone the repository from your GitHub account to your local machine. bash git clone https://github.com/your-username/face-Recognition-Attendance-master.git
-
Create a Branch:
- Create a new branch for your contribution. bash git checkout -b feature-branch
-
Make Changes:
- Make your desired changes to the codebase.
-
Commit Changes:
- Commit your changes with a descriptive commit message. bash git commit -m "Add feature or fix"
-
Push Changes:
- Push your changes to your fork on GitHub. bash git push origin feature-branch
-
Create a Pull Request:
- Open a Pull Request (PR) on the original repository.
- Provide a clear title and description for your PR.
-
Review and Merge:
- The maintainers will review your PR and may request changes.
- Once approved, your changes will be merged into the main branch.
If the original repository has been updated, sync your fork to include the latest changes:
-
Add Upstream Remote:
- Add the upstream repository as a remote. bash git remote add upstream https://github.com/original-username/face-Recognition-Attendance-master.git
-
Fetch Upstream Changes:
- Fetch the changes from the upstream repository. bash git fetch upstream
-
Merge Upstream Changes:
- Merge the changes from the upstream repository into your local branch. bash git merge upstream/main
-
Push Changes to Your Fork:
- Push the updated changes to your fork on GitHub. bash git push origin main
We appreciate your contributions! Let's make Memory Collector even better together.