Skip to content

Latest commit

 

History

History
100 lines (61 loc) · 2.81 KB

CONTRIBUTING.md

File metadata and controls

100 lines (61 loc) · 2.81 KB

Contributing Guidelines

Thanks for taking time to contribute!

Following the steps below will make your contribution process nice and easy

Step 1: Fork the repository

Click the "Fork" button at the top of this page. This action will create a copy of this repository in your GitHub account.

Step 2: Clone the repository

Go to your GitHub account, open the forked repository, click on the "Code" button, and then click the "Copy to clipboard" icon.

Open your terminal and run the following command, replace url copied with the copied URL:

git clone "url copied"

This will clone the forked repository to your local machine.

Step 3: Change the directory

If not already there, run

cd ListExtender

Step 4: Create a branch

Make a new branch, its best practice and important to make new branch for avoiding the merge conflicts. Use git checkout command to create your own branch.

git checkout -b NameOfYourBranch

Step 5: Make necessary changes

Change the files or add as per the requirement/assignment.

Step 6: Check and Commit the changes

If you run the git status command in your project directory, you'll see there are changes. Add those changes to the branch you created using the git add command:

Example: If you changed exampleFile

git add exampleFile

Now commit the changes:

git commit -m "Updated exampleFile"

Replace Updated exampleFile with your short comment.

Step 7: Push your changes to GitHub

Use the git push command to push your changes to GitHub:

git push origin -u NameOfYourBranch

Step 8: Submit your changes for review

Go to your repository on GitHub, and you'll see a "Compare & pull request" button. Click on that button.

Submit the pull request. By clicking on "Create pull request"

Step 9: Merged?

You will receive a notification email once your changes have been merged.

Project Outline

For core library and logic

Checkout the website

For Styling

  • Check CSS folder.

For Script

  • Check js folder.

For Examples and to Understand

Also Check: Readme.md