-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from aayush105/contributing
add contributing docs
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Contributing to Crack Code | ||
|
||
Thank you for your commitment to supporting Object-Oriented Programming (OOP). Your assistance significantly enhances our projects, making them more beneficial for students and researchers. Let's collaborate to create a platform where students can resolve their queries and access the necessary resources, fostering a supportive and enriching learning environment. | ||
|
||
Please take a moment to review the following guidelines to ensure a smooth and collaborative contribution process. | ||
|
||
## How to Contribute | ||
|
||
1. Fork the repository. | ||
|
||
2. Clone the forked repository to your local machine. | ||
|
||
```bash | ||
git clone [email protected]:<your_username>/oop | ||
``` | ||
|
||
3. Create a new branch for your changes. | ||
|
||
```bash | ||
git checkout -b <branch-name> | ||
``` | ||
4. Make your changes and commit them. | ||
|
||
5. Push your changes to your forked repository. | ||
```bash | ||
git push origin <branch-name> | ||
``` |