Skip to content

Latest commit

 

History

History
90 lines (53 loc) · 2.11 KB

CONTRIBUTING.md

File metadata and controls

90 lines (53 loc) · 2.11 KB

Contribution Guideline



Are you new to web development? Just learning HTML/CSS/JS and you want to contribute to open source? Follow the steps below!


Here's a quick rundown on how to make a contribution to my project:



1. If you have suggestions for how this project could be improved, or want to report a bug, open an issue! We'd love all and any contributions.


### 2. Fork this repository .

Click on fork to create a copy of project to your account. This creates a separate copy for you to workon
### 3. Clone the repository to your local machine using: ``` $ git clone https://github.com//.git ``` Now you have the project on your local machine

4. Add the upstream remote:

 cd <your-forked-project-folder>
 $ git remote add upstream https://github.com/Emilance/Javascript-Calculator-App.git

5. Pull the latest changes from the main repository if you think your fork is behind:

 git pull upstream master

6. Create a new branch and switch to it for your issue fix or feature using:

  git switch -c branch-name-here

7. Make the appropriate changes for the issue you are trying to address or the feature that you want to add


8. Add the changes to the staging and commit them to the branch you are working on


9. Push the changes to the remote repository using:

  git push origin branch-name-here

10. Submit a pull request to the upstream repository


11. Title the pull request with a short description of the changes made


12. Wait for the pull request to be reviewed by a maintainer


13. Celebrate your success after your pull request is merged!



Resources