Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/twowaits/make-pull-request

Use this as learning repo on how to create successful pull requests. Very basic tasks on Python, HTML, CSS, JavaScript, JAVA.
https://github.com/twowaits/make-pull-request

css html java javascript python

Last synced: 2 days ago
JSON representation

Use this as learning repo on how to create successful pull requests. Very basic tasks on Python, HTML, CSS, JavaScript, JAVA.

Awesome Lists containing this project

README

        

![Issues](https://img.shields.io/github/issues/twowaits/make-pull-request)
![Stars GitHub](https://img.shields.io/github/stars/twowaits/make-pull-request)
![Forks](https://img.shields.io/github/forks/twowaits/make-pull-request)
[![project chat](https://img.shields.io/badge/telegram-join--chat-brightgreen)](https://t.me/joinchat/AAAAAFbbJqzUyF18Okx94A)

## make-pull-request This repo is excluded from Hacktoberfest. Kindly use it for learning purposes only!
It's an initiative by Twowaits Technologies to help create more awareness about Open Source and help introduce many more students to the benefits of FOSS. We will organize lots of events that will prove to be very profitable for the students and encourage them to contribute in open source, this is our humble step.

Lots of students struggle in creating their first PR. They try somewhat and leave when couldn't. We created this as learning repo on how to create successful pull requests on languages like JAVA, Python, C++, HTML/CSS.

You can look at the issues [here](https://github.com/twowaits/make-pull-request/issues) and choose which one you would like to work on! Do check the [Contributing.md](https://github.com/twowaits/make-pull-request/blob/master/CONTRIBUTING.md) so that you don't face any troubles.

## How to particpate in Hacktoberfest 2021

How to register, some important rules to follow, which repos to contribute and other details in a 17 mins quick video on our Youtube Channel.

[![](https://raw.githubusercontent.com/twowaits/make-pull-request/master/Images/Hacktoberfest_2021_YT_Thumbnail.png)](https://youtu.be/GuZpeobFsZw)

If above link doesn't work watch [here](https://youtu.be/GuZpeobFsZw).

## Programming Languages
This Repository consists of following programming languages
- HTML : 58.8%
- Python : 12.0%
- Java : 13.2%
- C++ : 8.7%
- JavaScript : 5.2%
- CSS : 0.7%

## Steps to setup this Repository Locally

1. Fork this repository to your account.

![PicsArt_10-04-08 04 45](https://user-images.githubusercontent.com/64744084/95018364-e7d2df00-067c-11eb-9989-5ed586adb11b.jpg)

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
```
![PicsArt_10-04-07 46 13](https://user-images.githubusercontent.com/64744084/95018081-e3a5c200-067a-11eb-8a51-acde725b0345.png)

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
```
2. Once files added, you need to commit the changes to with an appropriate commit message.
```bash
git commit -m ""
```
3. After commiting the changes, you need to push the changes
```bash
git push origin
```
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!!