Common.Lib is a utility library developed to facilitate application development by providing various reusable functions and methods. This library is designed to be used across multiple projects, simplifying repetitive tasks and making code cleaner and more modular.
To include Common.Lib in your project, you can clone it directly from the GitHub repository:
git clone https://github.com/HedpE-/Common.Lib.gitContributions are welcome! To contribute:
-
Fork the repository. Click on the "Fork" button at the top right of this repository page to create a copy of the repository in your GitHub account.
-
Clone Your Forked Repository Clone the forked repository to your local machine:
git clone https://github.com/YourUsername/Common.Lib.git
Replace YourUsername with your GitHub username.
-
Create a New Branch
It's good practice to create a new branch for each feature or fix:git checkout -b my-feature
Replace my-feature with a brief name describing your change.
-
Make Changes
Add your feature or fix, ensuring to follow any coding standards and practices established in the project. -
Commit Your Changes
Once you've made your changes, commit them with a clear message:git commit -m "Add feature XYZ" -
Push to Your Branch
Push your changes to your forked repository:git push origin my-feature
-
Open a Pull Request
Go to the original repository on GitHub, and you’ll see an option to open a Pull Request (PR). Click on it, and provide a detailed description of the changes made and their purpose. -
Address Feedback
Be responsive to any feedback or requested changes from the repository maintainers. This helps ensure a smooth review and integration process.
Following these steps helps maintain the quality and consistency of the project. Thank you for your contribution!