Skip to content

Latest commit

 

History

History
66 lines (37 loc) · 2.44 KB

CONTRIBUTING.md

File metadata and controls

66 lines (37 loc) · 2.44 KB

Send PR directly on Github

  1. Fork the repository: forking a repository creates a copy of the repository on your accoount. This allows you to freely experiment changes without affecting the main repository.

fork

After clicking the fork button in the image above, you'll complete the forking process by clicking the create fork button

fork 1

  1. Create a branch of yours to make your contributions: creating a branch allows you to separate your changes from the main branch which can later be added to the main branch if there is no error or conflict. Else, discarded.

branch

Input the name of your branch and then click "Create branch: branch-name" slightly below the branch name input area

  1. When you are done creating the branch, you can start making your contributions.

make-changes

  1. When you're done making your contribution, compare & pull request

compare and pull request

  1. Finally, send your pull request. You can also leave a comment to explain your contribution.

pull request

Send PR with git

  1. Fork the repository as in the first step above

  2. Clone the forked repository to your local machine

git clone https://github.com/OSCA-Ado-Ekiti/Hacktoberfest2023-Ekiti.git
  1. Navigate to the cloned directory
cd Hacktoberfest2023-Ekiti
  1. Create a branch
git checkout -b branch_name (Creates and switches to the new branch created)
  1. Make your contributions

  2. Add, commit and push changes

git add file_name (use . to add every files and folders in the directory)
git commit -m 'commit message'
git push origin branch_name

If you are having any dificulty, check this article: https://codesandbox.io/post/how-to-make-your-first-open-source-contribution