- Fork the repository
- Clone the repository
- Make changes and commit them
- Push changes to your forked repository
- Create a pull request
Steps to create a fork, clone and create a PR in Github:
- Go to the siglens repo on GitHub.
- Click on the "Fork" button in the top-right corner of the page. This will create a copy of the repository under your GitHub account.
- Open a command window on your local computer.
- Use the git clone command followed by the URL of your forked repository to clone it to your local machine. For example: git clone https://github.com//.
- Navigate to the cloned repository on your local machine.
- Make the desired changes to the code or files.
- Stage your changes using the git add command. For example: git add .
- Commit your changes using the git commit command. For example: git commit -m "commit message"
- Use the git push command to push your changes to your forked repository on GitHub. For example: git push origin branch-name.
- Go to your forked repository on GitHub.
- Click on the "New pull request" button.
- Select the branch with your changes as the "compare" branch.
- Select the original repository you forked from as the "base" branch.
- Provide a title and description for your pull request.
- Click on the "Create pull request" button to submit your pull request.