forked from Ayushparikh-code/Web-dev-mini-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa1be6a
commit d1752f7
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
## HOW TO CONTRIBUTE ? 👷 | ||
|
||
**1.** Fork [this](https://github.com/Ayushparikh-code/Web-dev-mini-projects) repository. | ||
|
||
**2.** Clone the forked repository. | ||
|
||
```terminal | ||
git clone https://github.com/Ayushparikh-code/Web-dev-mini-projects | ||
``` | ||
|
||
**3.** Navigate to the project directory. | ||
|
||
```terminal | ||
cd Web-dev-mini-projects | ||
``` | ||
|
||
**4.** MAKE A NEW FOLDER WITH YOUR PROJECT NAME INSIDE web-dev-mini-projects & Add your project files (eg: index.html ,style.css, script.js) inside that folder | ||
<br> | ||
|
||
**5.** Also Add a README file in your project folder which consists of Description/screenshots about your project ! | ||
|
||
|
||
<br> | ||
|
||
**6.** Create a new branch. | ||
|
||
```terminal | ||
git checkout -b <your_branch_name> | ||
``` | ||
|
||
**7.** Add & Commit your changes. | ||
|
||
```terminal | ||
git add . | ||
git commit -m "<your_commit_message>" | ||
``` | ||
|
||
**7.** Push your local branch to the remote repository. | ||
|
||
```terminal | ||
git push -u origin <your_branch_name> | ||
``` | ||
|
||
**8.** Create a Pull Request! | ||
|
||
**Congratulations!** Sit and relax till we review your PR, you've made your contribution to (https://github.com/Ayushparikh-code/Web-dev-mini-projects) project | ||
|
||
<br> |