The are step by step instructions on how to contribute to the project codebase.
By clicking the "Fork" button on the top most right corner, The repository shall be duplicated to your personal account.
HTTPS
git clone https://github.com/omarageorge/Genesys.git
SSH
git clone [email protected]:omarageorge/Genesys.git
Github CLI
gh repo clone omarageorge/Genesys
Here we create a branch called feature where we shall be making changes directly to.
git checkout -b feature
git add <filename>
git commit -m "Commit message here"
Merge the feature branch to the main branch after confirming that your code works well.
git checkout main
git merge feature
git add <filename>
git push -u origin main
-
In the repository, click on the "Pull request" tab the is next to the issues tab.
-
Click on a big green button "New pull request" on the right.