-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathREADME_updated.txt
39 lines (29 loc) · 1.48 KB
/
README_updated.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
## How to contribute to this repository
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".
Don't forget to give this repo a star!
1. Fork the Repository
2. Go to Git Bash and Clone the forked repository using :
a. Clone the repository
```bash
git clone https://github.com/your_username/make-pull-request
```
3. Open the folder in your favourite code editor and add your changes or modifications.
## Creating a PR
1. After making changes or modification on to your code locally, you need to add these files to the staging area.
```bash
git add <file-name>
```
2. Once files added, you need to commit the changes to with an appropriate commit message.
```bash
git commit -m "<your-message>"
```
3. After commiting the changes, you need to push the changes
```bash
git push origin <branch-name>
```
4. Once you push the changes to your repository, the Compare & pull request button will appear in GitHub.
5. Click it and you'll be taken to this screen
6. Type a proper description and give the PR an appropriate title. Finally, Open a pull request by clicking the Create pull request button.
7. That's it. You have opened a PR. Wait for it to get merged.
## Thank You for your Amazing Contribution!!