Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Created staging branch & UpdatedREADME.md #14

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,20 +73,24 @@ We welcome contributions from the community! To contribute, please follow these
cd web-dev
```

3. **Create a new branch:**
3. **Switch to staging branch**
```bash
git checkout staging
```
4. **Create a new feature branch:**
```bash
git checkout -b feature-name
```

4. **Make your changes:**
5. **Make your changes:**
Implement your feature or fix a bug.

5. **Commit your changes:**
6. **Commit your changes:**
```bash
git commit -m "Description of your changes"
```

6. **Push to your fork:**
7. **Push to your fork:**
```bash
git push origin feature-name
```
Expand Down