Skip to content

Commit

Permalink
Merge pull request #26 from ssurbhi09/patch-1
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
Ash515 committed Dec 19, 2021
2 parents 65b86e4 + e35bfa8 commit 7e0b47f
Showing 1 changed file with 87 additions and 0 deletions.
87 changes: 87 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,93 @@ The general portal for publishing exam results at universities. Students can get
- Use only the above mentioned tech stacks.
- Work with correct directory.

# 💥 How to Contribute

[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](https://github.com/mohit200008/FoodSaver20008/pulls)
[![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.png?v=103)](https://github.com/ellerbrock/open-source-badges/)

- Take a look at the existing [Issues](https://github.com/mohit200008/FoodSaver20008/issues) or [create a new issue](https://github.com/mohit200008/FoodSaver20008/issues/new/choose)!
- [Fork the Repo](https://github.com/mohit200008/FoodSaver20008/fork), create a branch for any issue that you are working on and commit your work.
- Create a **[Pull Request](https://github.com/mohit200008/FoodSaver20008/compare)** (_PR_), which will be promptly reviewed and given suggestions for improvements by the community.
- Add screenshots or screen captures to your Pull Request to help us understand the effects of the changes that are included in your commits.

## ⭐ HOW TO MAKE A PULL REQUEST:

**1.** Start by making a fork the [**ExamResultGenerator**](https://github.com/mohit200008/FoodSaver20008) repository. Click on the <a href="https://github.com/mohit200008/FoodSaver20008/fork"><img src="https://i.imgur.com/G4z1kEe.png" height="21" width="21"></a> symbol at the top right corner.

**2.** Clone your new fork of the repository:

```bash
git clone https://github.com/<your-github-username>/FoodSaver20008
```

**3.** Set upstream command:

```bash
git remote add upstream https://github.com/mohit200008/FoodSaver20008.git
```

**4.** Navigate to the new project directory:

```bash
cd ExamResultGenerator
```

**5.** Create a new branch:

```bash
git checkout -b YourBranchName
```

**6.** Sync your fork or local repository with the origin repository:

- In your forked repository click on "Fetch upstream"
- Click "Fetch and merge".

### Alternatively, Git CLI way to Sync forked repository with origin repository:

```bash
git fetch upstream
```

```bash
git merge upstream/main
```

### [Github Docs](https://docs.github.com/en/github/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-on-github) for Syncing

**7.** Make your changes to the source code.

**8.** Stage your changes and commit:

```bash
git add .
```

```bash
git commit -m "<your_commit_message>"
```

**9.** Push your local commits to the remote repository:

```bash
git push origin YourBranchName
```

**10.** Create a [Pull Request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request)!

**11.** **Congratulations!** You've made your first contribution! 🙌🏼



## All the best! 🥇

<p align="center">

[![built with love](https://forthebadge.com/images/badges/built-with-love.svg)](https://github.com/unnati914/Care4ther-)

</p>

## Contribution Programs
- DevIncept Summer of Code 21 ❤
- Script Winter of Code 21 ❤
Expand Down

0 comments on commit 7e0b47f

Please sign in to comment.