Title | |
---|---|
1 | Project Details |
2 | How to Contribute? |
3 | Top Contributors |
- To Do App user interface
- Add your tasks to the list
- Check the task off if you have completed it
- Delete the task from the list
First of all, what is Hacktoberfest?
Hacktoberfest® is open to everyone in our global community. Whether you’re a developer, student learning to code, event host, or company of any size, you can help drive growth of open source and make positive contributions to an ever-growing community. All backgrounds and skill levels are encouraged to complete the challenge.
- Hacktoberfest is open to everyone in our global community!
- Pull requests can be made in any GitHub-hosted repositories/projects.
- Sign up anytime between October 1 and October 31.
Follow these steps:
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 GitHub account.
Now, clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the clone button and then click the copy to clipboard icon.
Open your terminal and run the following git command:
git clone {url you just copied}
Note: Do not type the curly brackets into the terminal
For example:
git clone https://github.com/your-github-username/Todo.git
Change the repository directory on your computer.
cd Todo
Now, create a branch using git checkout
command:
git checkout -b {your-new-branch-name}
For example:
git checkout -b new-todo-feature
Let say you have made some changes for index.html
. Save the file and add it to the working directory.
git add index.html
Now, commit those changes using the git commit
command:
git commit -m 'Add a new todo list name'
Push the changes using git push
command:
git push origin {your-new-branch-name}
replace {your-new-branch-name}
with the name of the branch you created earlier.
Go to your repository on GitHub, you will see a Compare & pull request
button. Click on that button.
You can write more details about your changes before you submit the pull request.
Finally, click on the Create pull request
to submit your pull request (PR).
Note: If you wish to know more about how to make a pull request.