Click the "Fork" button at the top of this page. This action will create a copy of this repository in your GitHub account.
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.
If not already there, run
cd ListExtender
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
Change the files or add as per the requirement/assignment.
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.
Use the git push
command to push your changes to GitHub:
git push origin -u NameOfYourBranch
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"
You will receive a notification email once your changes have been merged.
- For more help on the process visit Hacktoberfest !
- Checkout lib folder.
- Also , for more instructions on using the library, visit: https://julienbl.me/ListExtender/documentation.html OR run documentation on localhost.
- Click index.html and run on localhost.
- Check CSS folder.
- Check js folder.
- Check example
Also Check: Readme.md