Skip to content

Commit

Permalink
Added Colaborators.json format and Example entry
Browse files Browse the repository at this point in the history
  • Loading branch information
Aryan-Joshi-10 authored Jan 29, 2025
1 parent 0ab90b1 commit c1af137
Showing 1 changed file with 29 additions and 3 deletions.
32 changes: 29 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down

0 comments on commit c1af137

Please sign in to comment.