This repository has been created specifically for CSoC 2023 participants as a testing ground to familiarize themselves with the tools and workflows commonly used during the program.
1. Fork the repository: Click on the "Fork" button at the top right corner of this repository's page. This will create a personal copy of the repository under your GitHub account.
2. Clone the repository: On your forked repository, click on the "Code" button and copy the repository URL. Open your preferred command line or terminal, navigate to your desired directory, and run the following command to clone the repository: [git clone]
3. Add a file: Create a new file or add an existing file to the repository directory. [git add .]
4. Commit your changes: After adding the file, it's time to commit your changes. [ git commit -m"message"]
5. Push your changes: Push your changes to your forked repository using the following command: [git push]
6. Create a new pull request: Go to the original repository's page on GitHub and click on the "New pull request" button located near the top left. Enter a descriptive title for your pull request that summarizes the changes you made. Additionally, provide a comment explaining the purpose of the pull request, any relevant information and finally click on the "Create pull request" button to submit your pull request.
Your pull request will now be visible to the repository maintainers and other contributors. They will review your changes, provide feedback, and discuss any necessary modifications or improvements.