This repository contains all the notes I've made during my course. These notes cover various topics, including networking,OS,Cloud,DSA etc.
You can read the gitcommands notes in the repo if you are new to Git
If you'd like to contribute to this repository, you can follow these steps:
- Fork the repository by clicking the "Fork" button on the top right corner of this page. This will create a copy of the repository in your GitHub account.
- Clone your forked repository to your local machine using the
git clone
command followed by the repository's URL. - Create a new branch for your changes using
git checkout -b feature/your-feature-name
. - Make your changes to the code or documentation.
- Commit your changes using
git commit -m "Description of your changes"
. - Push your changes to your forked repository with
git push origin feature/your-feature-name
. - Finally, create a Pull Request (PR) from your forked repository on GitHub. Provide a descriptive title and explain the changes you've made. Then submit the PR for review.
Once your PR is reviewed and approved, it will be merged into the main repository. Thank you for contributing!