Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
div-hacks authored Oct 31, 2021
1 parent 63db49b commit 87562df
Showing 1 changed file with 81 additions and 0 deletions.
81 changes: 81 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,83 @@
# Be Creative this Hacktoberfest 2021
Lets be creative this hacktober fest. Get started with contributing to open source.



![-----------------------------------------------------](https://raw.githubusercontent.com/andreasbm/readme/master/assets/lines/rainbow.png)

# <h1 align="center">🚀 Web-Ideas 🚀</h1>

![-----------------------------------------------------](https://raw.githubusercontent.com/andreasbm/readme/master/assets/lines/rainbow.png)

<img align="center" src="https://user-images.githubusercontent.com/56113566/136353444-47601e4b-115c-4190-8ac6-79d4137f9629.jpg" height="300px" width="800">


![-----------------------------------------------------](https://raw.githubusercontent.com/andreasbm/readme/master/assets/lines/rainbow.png)

<img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=for-the-badge" alt="PRs Welcome" /> <a href="https://github.com/Aryamanz29/Web-Dev-Ideas/pulls" target="_blank"><img alt="GitHub pull requests" src="https://img.shields.io/github/issues-pr/Aryamanz29/Web-Dev-Ideas?style=for-the-badge" /></a> <a href="https://github.com/Aryamanz29/Web-Dev-Ideas/issues" target="_blank"><img alt="GitHub issues" src="https://img.shields.io/github/issues/Aryamanz29/Web-Dev-Ideas?style=for-the-badge" /></a>


# How Can I Contribute?

Don't know how to start of open source and Contribute to our Open Source Project ? Welcome to the world of hacking!

The steps to follow to contribute to any projects:

1. #### If you don't have git on your machine, [install it](https://help.github.com/articles/set-up-git/).

2. ## Fork this repository

Fork this repository by clicking on the fork button on the top of this page.
This will create a copy of this repository in your account.

3. ## Clone the repository

Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the _copy to clipboard_ icon.

Open a terminal and run the following git command:

```
git clone "url you just copied"
```
4. ### Add a upstream link to main branch in your cloned repo
```
git remote add upstream <original repository>
```
5. ### Keep your cloned repo upto date by pulling from upstream
This will also avoid any merge conflicts while committing new changes
```
git pull upstream main
```
6. ### Create your feature branch
Always create new branch
```
git checkout -b <feature-name>
```
7. ### Track your changes
```
git add .
```
8. ### Check for your changes.
```
git status
```
9. ### Commit all the changes
Write commit message as "Small Message"
```
git commit -m "Write a meaningfull but small commit message"
```
10. ### Push the changes for review
```
git push origin <branch-name>
```
11. ### Create a PR on Github.
Just hit the create a pull request button, you must write a PR message to clarify why and what are you contributing
<hr>
# ❓ What I have to do?
You can add any codes in any language by creating its respective folder (if already not available).
---

0 comments on commit 87562df

Please sign in to comment.