From c1af13772482a125cd372add1b7aa48880b86dc4 Mon Sep 17 00:00:00 2001 From: Aryan Joshi Date: Wed, 29 Jan 2025 15:40:46 +0530 Subject: [PATCH] Added Colaborators.json format and Example entry --- README.md | 32 +++++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 19265f0..359524b 100644 --- a/README.md +++ b/README.md @@ -37,10 +37,36 @@ A **pull request** (PR) is a way to propose changes to a repository on GitHub. I git checkout -b feature/add-new-functionality ``` -#### 4. **Make Changes** +#### 4. Update the **colaborators.json** file -- Edit the files as needed to implement your changes or features. -- After making the changes, check the status of modified files: +- Open the colaborators.json file in any text editor or IDE. +- Add your details in the following format under the "colaborators" array: + ```bash + { + "collaborators":[ + { + "name": "Your Name", + "year": "First Year", + "department": "Your Department", + "fun fact": "(Optional)" + } + ] + } + ``` +- Example Entry: + ```bash + { + "collaborators":[ + { + "name": "John Doe", + "year": "SY", + "department": "CS", + "fun fact": "The first computer game was made in 1962! 🎮" + } + ] + } + ``` +- After making the changes, check the status of modified files: ```bash git status ```