Contributions are welcome! If you have learned something new and want to share, or if you have improvements for existing content, please follow these steps:
-
Fork the Repository: Click on the "Fork" button at the top of the page.
-
Clone Your Fork: Clone your forked repository to your local machine.
git clone https://github.com/yourusername/learn-c.git cd learn-c
-
Create a New Branch: Create a new branch for your changes.
git checkout -b my-new-branch
-
Make Your Changes: Add new examples, improve documentation, or fix bugs.
-
Commit Your Changes: Commit your changes with a meaningful message.
git add . git commit -m "Add new tutorial on XYZ"
-
Push to Your Fork: Push your changes to your forked repository.
git push origin my-new-branch
-
Create a Pull Request: Go to the original repository on GitHub and create a pull request from your forked branch.