We welcome contributions! To submit a Pull Request (PR) to this repository, follow these steps:
Click the "Fork" button at the top right of this repository's page. This will create a copy of the repository under your GitHub account.
Clone your forked repository to your local machine using this command:
git clone https://github.com/your-username/Github.gitReplace your-username with your GitHub username.
Create a new branch for your changes:
git checkout -b feature-branchReplace feature-branch with a descriptive name (let this be your name for this repo) for your branch.
Make your desired changes in the repository. make a file with .txt
Once you're satisfied with your changes, add and commit them:
git add .
git commit -m "Description of your changes"Push your changes to your forked repository:
git push origin feature-branchGo to the original repository (https://github.com/biascodingclub/PullRequest) and you will see a notification to open a Pull Request. Click that, provide a descriptive title, and submit your PR for review.
Your PR will be reviewed, and you may be asked to make additional changes. Once your PR is approved, it will be merged into the main branch!
Thank you for your contribution!