Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/sirajmolla/hacktoberfest-2022

About 🌸κ—₯~κ—₯🌸 π„π•π„π‘π˜πŽππ„ πˆπ’ π–π„π‹π‚πŽπŒπ„ π“πŽ π‡π€π‚πŠπ“πŽππ„π‘π…π„π’π“-𝟐𝟎𝟐𝟐 𝐄𝐕𝐄𝐍𝐓𝐒 𝐀𝐍𝐃 𝐁𝐄 𝐀 𝐏𝐀𝐑𝐓 πŽπ… 𝐓𝐇𝐄 πŽππ„π-π’πŽπ”π‘π‚π„ π’πŽπ…π“π–π€π‘π„ π‚πŽπŒπŒπ”ππˆπ“π˜. 🌸κ—₯~κ—₯🌸 https://github.com/Sirajmolla/Hackoberfest-2022 Topics open-source developer-experience learning-by-doing maintainer hactoberfest hactoberfest-accepted hactoberfest-starter
https://github.com/sirajmolla/hacktoberfest-2022

appwrite digitalocean docker hacktoberfest hacktoberfest2022

Last synced: about 1 month ago
JSON representation

About 🌸κ—₯~κ—₯🌸 π„π•π„π‘π˜πŽππ„ πˆπ’ π–π„π‹π‚πŽπŒπ„ π“πŽ π‡π€π‚πŠπ“πŽππ„π‘π…π„π’π“-𝟐𝟎𝟐𝟐 𝐄𝐕𝐄𝐍𝐓𝐒 𝐀𝐍𝐃 𝐁𝐄 𝐀 𝐏𝐀𝐑𝐓 πŽπ… 𝐓𝐇𝐄 πŽππ„π-π’πŽπ”π‘π‚π„ π’πŽπ…π“π–π€π‘π„ π‚πŽπŒπŒπ”ππˆπ“π˜. 🌸κ—₯~κ—₯🌸 https://github.com/Sirajmolla/Hackoberfest-2022 Topics open-source developer-experience learning-by-doing maintainer hactoberfest hactoberfest-accepted hactoberfest-starter

Awesome Lists containing this project

README

        

Hacktoberfest2022


Hacktoberfest is a month-long celebration of open source software sponsored by Digital Ocean, Intel, and DEV.



## What is HacktoberFest🏡️?
Hacktoberfest, in its 8th year, is a month-long celebration of open source software run by DigitalOcean. During the month of October, you are invited to join open-source software enthusiasts, beginners, and the developer community by contributing to open-source projects.

# RewardsπŸ₯‡
- For beginners this is the great opportunity to dive in the pool of open source.
- Laptop stickers
- Hacktoberfest T-shirtπŸ‘•/Tree🌱(Tree planted in your name and help make Hacktoberfest 2022 more carbon neutral)

# RulesπŸ“ƒ
🏷️To earn your Hacktoberfest reward, you must register and make four valid pull requests (PRs) between October 1-31 (in any time zone). PRs can be made to any public repo on GitHub, not only the ones with issues labeled Hacktoberfest. If a maintainer reports your pull request as spam or behavior not in line with the project’s code of conduct, you will be ineligible to participate.

# Instructions πŸ“œ

- First fork this repository.
- Repeated codes will not be merged.
- The quality of pull requests is paramount,quantity comes second.
- Submit atleast four pull requests.
- No programming language boundation.

## FAQ

#### πŸ’₯What is Pull Request ?

Pull requests let you tell others about changes you've pushed to a branch in a repository on GitHub.

#### πŸ’₯What is Fork?

A fork is a copy of a repository that you manage. Forks let you make changes to a project without affecting the original repository. You can fetch updates from or submit changes to the original repository with pull requests.

#### πŸ’₯How to create a Pull Request?
[Creating Pull Request](https://www.digitalocean.com/community/tutorials/how-to-create-a-pull-request-on-github)

#### πŸ’₯How to rebase and update Pull Request?
[Rebasing and Updating Pull Request](https://www.digitalocean.com/community/tutorials/how-to-rebase-and-update-a-pull-request)

#### 🌟You can Star and Fork this repository 🌟.

## πŸš€ Quick Start :

#### Step 1: Forking the repository :

To work on this project, you will first need to make a copy of this repository. To do this, you should fork the repository and then clone it so that you have a local working copy.

Get your own Fork/Copy of this repository by clicking `Fork` button at right upper corner of your screen.

#### Step 2: Clone the Forked Repository

After the repository is forked, you can now clone it so that you have a local working copy of the codebase.

To make your local copy of the repository follow the steps:
- Open the Command Prompt
- Type this command:

```bash
$ git clone https://github.com//C
```

#### Step 3: Creating a new branch
This is one of the very important step that you should follow to contribute in Open Source. A branch helps to manage the workflow, isolate your code and does not creates a mess. To create a new branch:

```bash
$ git branch
$ git checkout -b
```

Keep your cloned repository upto to date by pulling from upstream (this will also avoid any merge conflicts while committing new changes)
```bash
git pull origin main
```

#### Step 5: Contribute
Make relevant changes according to the issue that you were assigned on. Contribute in any way you feel like :)

#### Step 6: Commiting and Pushing
Once you have modified an existing file or added a new file to the project, you can add it to your local repository, which is being done with the git add command.

```bash
git add .
```
With our file staged, we’ll want to record the changes that we have made to the repository with the `git commit` command.

The commit message is an important aspect of your code contribution; it helps the other contributors fully understand the changes you have made, why you made it, and how significant it is.

```bash
git commit -m "useful commit message"
```

At this point you can use the git push command to push the changes to the current branch of your forked repository:

```bash
git push origin
```

#### Step 7: Create Pull Request
Now, you are ready to make a pull request to the original repository.

You should navigate to your forked repository, and press the "Compare & pull request" button on the page.

GitHub will alert you that you can merge the two branches because there is no competing code. You should add in a title, a comment, and then press the β€œCreate pull request” button.


Happy Coding πŸ‘¨β€πŸ’»

show some ❀️  by giving a star to this repo!!

# Hacktoberfest-2022
About 🌸κ—₯~κ—₯🌸 π„π•π„π‘π˜πŽππ„ πˆπ’ π–π„π‹π‚πŽπŒπ„ π“πŽ π‡π€π‚πŠπ“πŽππ„π‘π…π„π’π“-𝟐𝟎𝟐𝟐 𝐄𝐕𝐄𝐍𝐓𝐒 𝐀𝐍𝐃 𝐁𝐄 𝐀 𝐏𝐀𝐑𝐓 πŽπ… 𝐓𝐇𝐄 πŽππ„π-π’πŽπ”π‘π‚π„ π’πŽπ…π“π–π€π‘π„ π‚πŽπŒπŒπ”ππˆπ“π˜. 🌸κ—₯~κ—₯🌸 https://github.com/Sirajmolla/Hackoberfest-2022 Topics open-source developer-experience learning-by-doing maintainer hactoberfest hactoberfest-accepted hactoberfest-starter

Hfest-Logo-2-Color-Manga@2x
Hfest-Logo-2-Color-Void@2x
Hfest-Logo-Manga@2x
Hfest-Logo-Void@2x
Hfest-Logo-2-Color-Manga@2x
Hfest-Logo-2-Color-Void@2x

Email Banners-Lite
Email Banners-Dark