Skip to content

Commit

Permalink
Merge pull request #67 from Devaki01/Documentation_Update
Browse files Browse the repository at this point in the history
Documentation Update
  • Loading branch information
Shubham-Zone authored Nov 5, 2024
2 parents 3dc6e9f + c62ec51 commit 91b4fe8
Showing 1 changed file with 37 additions and 6 deletions.
43 changes: 37 additions & 6 deletions Contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,55 @@ Thank you for considering contributing to Citizen Squad! We welcome contribution

## How to Contribute

1. **Fork the repository**: Click the "Fork" button at the top right of the repository page.
2. **Clone your fork**:
1. ** 🍴 Fork the repository**: Click the "Fork" button at the top right of the repository page.

2. ** 📥 Clone your fork**:
```sh
git clone https://github.com/your-username/Citizen_Squad.git
```
3. **Create a branch**:

3. **📂 Change the working directory.**
```sh
cd Citizen_Squad
```

4. **🔗 Add a reference to the original repository.**
```sh
git remote add upstream https://github.com/Shubham-Zone/Citizen_Squad.git
```

5. **🔍 Check the remotes for this repository.**
```sh
git remote -v
```

6. **⬇️ Always take a pull from the upstream repository to your main branch to keep it up-to-date with the main project (updated repository).**
```sh
git pull upstream main
```

7. **🌿Create a new branch**:
```sh
git checkout -b feature/your-feature-name
```
4. **Make your changes**: Implement your feature or bug fix.
5. **Commit your changes**:

8. **Make your changes**: Implement your feature or bug fix.

9. **📊 Track your changes.**
```sh
git add .
```

9. ** 💬Commit your changes**:
```sh
git commit -m "Description of your changes"
```
6. **Push to your fork**:

10. ** 🚀Push to your fork**:
```sh
git push origin feature/your-feature-name
```

7. **Create a Pull Request**: Go to the original repository and click the "New Pull Request" button.

## Code of Conduct
Expand Down

0 comments on commit 91b4fe8

Please sign in to comment.